mirror of
				https://github.com/fspc/BikeShed-1.git
				synced 2025-10-31 17:05:36 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			670 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			670 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class User < ActiveRecord::Base
 | |
|   acts_as_loggable
 | |
|   # Include default devise modules. Others available are:
 | |
|   # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
 | |
|   devise :database_authenticatable, :registerable,
 | |
|          :recoverable, :rememberable, :trackable, :validatable, :lockable #TODO ,:confirmable
 | |
| 
 | |
|   # Setup accessible (or protected) attributes for your model
 | |
|   attr_accessible :email, :password, :password_confirmation, :remember_me,
 | |
|     :first_name, :last_name, :nickname
 | |
| 
 | |
|   validates :first_name, :presence => true
 | |
|   validates :last_name, :presence => true
 | |
| 
 | |
|   def to_s
 | |
|     "#{first_name} #{last_name}"
 | |
|   end
 | |
| end
 |