summaryrefslogtreecommitdiff
path: root/app/models/project_setting.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/project_setting.rb')
-rw-r--r--app/models/project_setting.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/project_setting.rb b/app/models/project_setting.rb
index 6c8d2226bc9..fc834286876 100644
--- a/app/models/project_setting.rb
+++ b/app/models/project_setting.rb
@@ -13,6 +13,7 @@ class ProjectSetting < ApplicationRecord
self.primary_key = :project_id
validates :merge_commit_template, length: { maximum: 500 }
+ validates :squash_commit_template, length: { maximum: 500 }
def squash_enabled_by_default?
%w[always default_on].include?(squash_option)