parent
0d72df0e5c
commit
9c722933ba
@ -1,10 +1,11 @@
|
||||
class Users::ApplyProfessionalAuthForm
|
||||
include ActiveModel::Model
|
||||
|
||||
attr_accessor :school_id, :department_id, :identity, :extra, :upload_image
|
||||
attr_accessor :school_id, :department_id, :identity, :extra, :upload_image, :attachment_ids
|
||||
|
||||
validates :school_id, presence: true, numericality: { only_integer: true, greater_than: 0 }
|
||||
validates :department_id, numericality: { only_integer: true, greater_than: 0 }, allow_blank: true
|
||||
validates :identity, presence: true, inclusion: { in: %w(student teacher professional) }
|
||||
validates :extra, presence: true
|
||||
validates :attachment_ids, presence: true
|
||||
end
|
Loading…
Reference in new issue