gitlab-org--gitlab-foss/app/models/namespaces/user_namespace.rb

12 lines
281 B
Ruby

# frozen_string_literal: true
# TODO: currently not created/mapped in the database, will be done in another issue
# https://gitlab.com/gitlab-org/gitlab/-/issues/341070
module Namespaces
class UserNamespace < Namespace
def self.sti_name
'User'
end
end
end