gitlab-org--gitlab-foss/lib/api/applications.rb

51 lines
1.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-01-04 22:07:49 +00:00
module API
# External applications API
class Applications < ::API::Base
2017-01-04 22:07:49 +00:00
before { authenticated_as_admin! }
feature_category :authentication_and_authorization
2017-01-04 22:07:49 +00:00
resource :applications do
desc 'Create a new application' do
detail 'This feature was introduced in GitLab 10.5'
success Entities::ApplicationWithSecret
2017-01-04 22:07:49 +00:00
end
params do
requires :name, type: String, desc: 'Application name'
requires :redirect_uri, type: String, desc: 'Application redirect URI'
requires :scopes, type: String, desc: 'Application scopes'
optional :confidential, type: Boolean, default: true,
desc: 'Application will be used where the client secret is confidential'
2017-01-04 22:07:49 +00:00
end
post do
application = Doorkeeper::Application.new(declared_params)
if application.save
present application, with: Entities::ApplicationWithSecret
2017-01-04 22:07:49 +00:00
else
render_validation_error! application
end
end
desc 'Get applications' do
success Entities::Application
end
get do
applications = ApplicationsFinder.new.execute
present applications, with: Entities::Application
end
desc 'Delete an application'
delete ':id' do
application = ApplicationsFinder.new(params).execute
application.destroy
no_content!
end
2017-01-04 22:07:49 +00:00
end
end
end