完成user的字段
This commit is contained in:
parent
9dd05e6bd6
commit
790ed1b791
|
@ -9,5 +9,27 @@ class User < ActiveRecord::Base
|
|||
validates :email, format: {with: /\A[a-zA-Z0-9\-]+@[a-zA-Z0-9-]+\.(org|com|cn|io|net|cc|me)\z/}, uniqueness: true
|
||||
validates :password, length: {minimum: 6}, confirmation: true, if: :need_valid_password?
|
||||
validates :nick_name, length: {minimum: 2, maximum: 20}, uniqueness: true, if: 'nick_name.present?'
|
||||
|
||||
def nickname
|
||||
self.nick_name || self.username
|
||||
end
|
||||
|
||||
def set_admin
|
||||
self.admin = 0 unless self.admin.present?
|
||||
end
|
||||
|
||||
def check_password(password)
|
||||
self.authenticate(password)
|
||||
end
|
||||
|
||||
def update_last_reply_time
|
||||
self.update_attribute last_reply_time: DateTime.now
|
||||
end
|
||||
|
||||
def can_reply?
|
||||
(DateTime.now.to_i - self.last_reply_time.to_i) > 60
|
||||
end
|
||||
|
||||
def need_valid_password?
|
||||
new_record? || password.present?
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue