mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
10 lines
229 B
Ruby
10 lines
229 B
Ruby
class Issues::UpdateForm
|
|
include ActiveModel::Model
|
|
|
|
attr_accessor :subject
|
|
|
|
validates :subject, presence: { message: "不能为空" }
|
|
|
|
validates :subject, length: { maximum: 80, too_long: "不能超过80个字符" }
|
|
|
|
end |