debian-mirror-gitlab/app/services/applications/create_service.rb

17 lines
381 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Applications
class CreateService
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
def initialize(current_user, params)
@current_user = current_user
2018-11-08 19:23:39 +05:30
@params = params.except(:ip_address)
2018-03-17 18:26:18 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
def execute(request)
2018-03-17 18:26:18 +05:30
Doorkeeper::Application.create(@params)
end
end
end