gitlab-org--gitlab-foss/app/services/users/authorized_create_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
243 B
Ruby
Raw Normal View History

# 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