更改:项目标识提示语

This commit is contained in:
2023-04-07 11:27:19 +08:00
parent d8eba81afd
commit 60b0ee6b28
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ class Projects::CreateForm < BaseForm
:project_language_id, :ignore_id, :license_id, :private, :owner
validates :user_id, :name, :repository_name, presence: true
validates :repository_name, format: { with: CustomRegexp::REPOSITORY_NAME_REGEX, multiline: true, message: "只能含有数字字母下划线且不能以下划线开头和结尾" }
validates :repository_name, format: { with: CustomRegexp::REPOSITORY_NAME_REGEX, multiline: true, message: "项目标识只能包含数字,字母,下划线(_),中划线(-),英文句号(.),必须以数字和字母开头,不能以下划线/中划线开头和结尾" }
validates :name, length: { maximum: 50 }
validates :repository_name, length: { maximum: 100 }