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

module Applications
  class CreateService
    def initialize(current_user, params)
      @current_user = current_user
      @params = params.except(:ip_address)
    end

    def execute(request)
      Doorkeeper::Application.create(@params)
    end
  end
end