2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Applications
|
|
|
|
class CreateService
|
2019-07-07 11:18:12 +05:30
|
|
|
attr_reader :current_user, :params
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def initialize(current_user, params)
|
|
|
|
@current_user = current_user
|
2019-12-04 20:38:33 +05:30
|
|
|
@params = params.except(:ip_address)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
# EE would override and use `request` arg
|
2018-11-08 19:23:39 +05:30
|
|
|
def execute(request)
|
2020-09-03 11:15:55 +05:30
|
|
|
@application = Doorkeeper::Application.new(params)
|
|
|
|
|
|
|
|
unless params[:scopes].present?
|
|
|
|
@application.errors.add(:base, _("Scopes can't be blank"))
|
|
|
|
|
|
|
|
return @application
|
|
|
|
end
|
|
|
|
|
|
|
|
@application.save
|
|
|
|
@application
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
Applications::CreateService.prepend_mod_with('Applications::CreateService')
|