summaryrefslogtreecommitdiff
path: root/app/services/applications/create_service.rb
blob: d71174d139367723ecb304783d4d9b145c67d54d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Applications
  class CreateService
    attr_reader :current_user, :params

    def initialize(current_user, params)
      @current_user = current_user
      @params = params.except(:ip_address) # rubocop: disable CodeReuse/ActiveRecord
    end

    # EE would override and use `request` arg
    def execute(request)
      Doorkeeper::Application.create(params)
    end
  end
end

Applications::CreateService.prepend_if_ee('EE::Applications::CreateService')