|
|
|
@ -5,8 +5,8 @@ class Users::UpdateAccountForm
|
|
|
|
|
attr_accessor :nickname, :name, :show_realname, :gender, :location, :location_city,
|
|
|
|
|
:identity, :student_id, :technical_title, :school_id, :department_id
|
|
|
|
|
|
|
|
|
|
validates :nickname, presence: true, length: { minimum: 2, maximum: 20 }, format: { with: CustomRegexp::NICKNAME, message: "昵称2-20位中英文、数字及下划线" }
|
|
|
|
|
validates :name, presence: true, length: { minimum: 2, maximum: 10 }, format: { with: CustomRegexp::LASTNAME, message: "姓名2-10位中英文、数字" }
|
|
|
|
|
validates :nickname, presence: true, length: { minimum: 2, maximum: 20 }, format: { with: CustomRegexp::NICKNAME, message: "2-20位中英文、数字及下划线" }
|
|
|
|
|
validates :name, presence: true, length: { minimum: 2, maximum: 10 }, format: { with: CustomRegexp::LASTNAME, message: "2-10位中英文、数字" }
|
|
|
|
|
validates :gender, presence: true, numericality: { only_integer: true }, inclusion: { in: [0, 1] }
|
|
|
|
|
validates :location, presence: true
|
|
|
|
|
validates :location_city, presence: true
|
|
|
|
|