debian-mirror-gitlab/app/models/namespaces/user_namespace.rb
2021-11-18 22:05:49 +05:30

11 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