Welcome to mirror list, hosted at ThFree Co, Russian Federation.

authorized_create_service.rb « users « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6109f0c19182567eb6179cc0b9461b67c36300a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Users
  class AuthorizedCreateService < CreateService
    extend ::Gitlab::Utils::Override

    private

    override :build_class
    def build_class
      Users::AuthorizedBuildService
    end
  end
end