Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_namespace.rb « namespaces « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 517d68b118d01b6021345a29e5dc5398cba564e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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/337102
module Namespaces
  class UserNamespace < Namespace
    def self.sti_name
      'User'
    end
  end
end