gitlab-org--gitlab-foss/lib/api/v3/system_hooks.rb

20 lines
380 B
Ruby
Raw Normal View History

2017-02-06 13:38:17 -05:00
module API
module V3
class SystemHooks < Grape::API
before do
authenticate!
authenticated_as_admin!
end
resource :hooks do
desc 'Get the list of system hooks' do
success ::API::Entities::Hook
end
get do
present SystemHook.all, with: ::API::Entities::Hook
end
end
end
end
end