gitlab-org--gitlab-foss/lib/api/v3/system_hooks.rb
2017-02-17 09:05:24 +01:00

19 lines
380 B
Ruby

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