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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-05 18:12:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-05 18:12:12 +0300
commit8ec882085e734458ffe0fff8e2e4b72bc3871419 (patch)
tree6869bb67f3e66e9de828bc47a08577efa1e296c6 /app/models/namespace
parentf63850d9d6c3a81e78c93995c904ed6c0785ef19 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/namespace')
-rw-r--r--app/models/namespace/detail.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/models/namespace/detail.rb b/app/models/namespace/detail.rb
new file mode 100644
index 00000000000..dbbf9f4944a
--- /dev/null
+++ b/app/models/namespace/detail.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class Namespace::Detail < ApplicationRecord
+ belongs_to :namespace, inverse_of: :namespace_details
+ validates :namespace, presence: true
+ validates :description, length: { maximum: 255 }
+
+ self.primary_key = :namespace_id
+end