gitlab-org--gitlab-foss/app/services/applications/create_service.rb

14 lines
293 B
Ruby
Raw Normal View History

2017-10-24 06:38:06 +00:00
module Applications
class CreateService
def initialize(current_user, params)
@current_user = current_user
@params = params
@ip_address = @params.delete(:ip_address)
end
2017-10-31 08:02:57 +00:00
def execute(request = nil)
2017-10-24 06:38:06 +00:00
Doorkeeper::Application.create(@params)
end
end
end