2021-11-11 11:23:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# TODO: currently not created/mapped in the database, will be done in another issue
|
2021-11-18 22:05:49 +05:30
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/341070
|
2021-11-11 11:23:49 +05:30
|
|
|
module Namespaces
|
|
|
|
class UserNamespace < Namespace
|
|
|
|
def self.sti_name
|
|
|
|
'User'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|