Sha256: 0a97ffc72883de03949fa93345467ccaf7ec49aabfe5ba573f579fe592d39f3e
Contents?: true
Size: 591 Bytes
Versions: 2
Compression:
Stored size: 591 Bytes
Contents
module Cadenero # Defines a user of one or more accounts for the multitenant Rails App class User < ActiveRecord::Base attr_accessible :email, :password, :password_confirmation has_secure_password has_many :accounts, class_name: "Cadenero::V1::Account", foreign_key: "owner_id" has_many :members, class_name: "Cadenero::Member" has_many :memberships, through: :members, source: :account # Obtain the authentication_token from the account to be use for the User def auth_token accounts[0].authentication_token if accounts[0] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cadenero-0.0.2.b2 | app/models/cadenero/user.rb |
cadenero-0.0.2.b1 | app/models/cadenero/user.rb |