LDAP BASE IMPLEMENRTATION

This commit is contained in:
Valery Sizov 2012-01-21 20:36:14 +02:00 committed by vsizov
parent b4cc04d7e1
commit c083df0570
12 changed files with 80 additions and 2 deletions

View file

@ -2,7 +2,7 @@ class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :token_authenticatable,
:recoverable, :rememberable, :trackable, :validatable
:recoverable, :rememberable, :trackable, :validatable, :omniauthable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me,
@ -62,6 +62,10 @@ class User < ActiveRecord::Base
def last_activity_project
projects.first
end
def self.generate_random_password
(0...8).map{ ('a'..'z').to_a[rand(26)] }.join
end
end
# == Schema Information
#