14 lines
243 B
Ruby
14 lines
243 B
Ruby
# 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
|