diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-03-16 18:18:33 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-03-16 18:18:33 +0000 |
commit | f64a639bcfa1fc2bc89ca7db268f594306edfd7c (patch) | |
tree | a2c3c2ebcc3b45e596949db485d6ed18ffaacfa1 /app/models/board.rb | |
parent | bfbc3e0d6583ea1a91f627528bedc3d65ba4b10f (diff) | |
download | gitlab-ce-f64a639bcfa1fc2bc89ca7db268f594306edfd7c.tar.gz |
Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40
Diffstat (limited to 'app/models/board.rb')
-rw-r--r-- | app/models/board.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/board.rb b/app/models/board.rb index 85fad762ebe..418ea67fc6a 100644 --- a/app/models/board.rb +++ b/app/models/board.rb @@ -7,6 +7,7 @@ class Board < ApplicationRecord has_many :lists, -> { ordered }, dependent: :delete_all # rubocop:disable Cop/ActiveRecordDependent has_many :destroyable_lists, -> { destroyable.ordered }, class_name: "List" + validates :name, presence: true validates :project, presence: true, if: :project_needed? validates :group, presence: true, unless: :project |