aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/user.rb
blob: 77aa02c6865331f2691a1efac1c7cc36a55423d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable,
         :invitable


  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me, :name

  belongs_to :organisation

  before_validation(:on => :create) do
    self.password ||= Devise.friendly_token.first(6)
  end
  
  # remove organisation and referentials if last user of it
  after_destroy :check_destroy_organisation
  def check_destroy_organisation
    if organisation.users.empty? 
      organisation.destroy
    end
  end

end