app/models/user.rb in artfully_ose-1.2.0.beta.1 vs app/models/user.rb in artfully_ose-1.2.0.pre
- old
+ new
@@ -1,13 +1,10 @@
-class User < ActiveRecord::Base
+ class User < ActiveRecord::Base
include Ext::DeviseConfiguration
include Ext::Integrations::User
- devise :token_authenticatable
- before_save :ensure_authentication_token
-
has_many :shows
has_many :orders
has_many :imports
has_many :discounts
@@ -19,24 +16,24 @@
def self.generate_password
Devise.friendly_token
end
# Setup accessible (or protected) attributes for your model
- attr_accessible :email, :password, :password_confirmation, :remember_me, :user_agreement, :newsletter_emails, :first_name, :last_name, :user_memberships_attributes
+ attr_accessible :email, :password, :password_confirmation, :remember_me, :user_agreement, :newsletter_emails
def is_in_organization?
- @is_in_organization ||= !!(user_memberships.any? && ! user_memberships.first.organization.new_record?)
+ @is_in_organization ||= user_memberships.any?
end
def current_organization
- @current_organization ||= is_in_organization? ? user_memberships.first.organization : Organization.new
+ @current_organization ||= (is_in_organization? ? user_memberships.first.organization : Organization.new)
end
def membership_in(organization)
user_memberships.where(:organization_id => organization.id).limit(1).first
end
-
+
def self.like(query = "")
return if query.blank?
q = "%#{query}%"
self.joins("LEFT OUTER JOIN user_memberships m ON m.user_id = users.id")
.joins("LEFT OUTER JOIN organizations o ON o.id = m.organization_id")
@@ -44,17 +41,7 @@
.where("users.email like ? or o.name like ?", q, q)
end
def active_for_authentication?
super && !suspended?
- end
-
- def to_s
- if first_name.present? || last_name.present?
- [first_name, last_name].reject(&:blank?).join(" ")
- elsif email.present?
- email.to_s
- else
- "No Name ##{id}"
- end
end
end