summaryrefslogtreecommitdiff
path: root/app/models/namespaces/user_namespace.rb
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