Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/models/author.rb @ 1170:bfd49444c276 feature_523
Close obsolete branch feature_523
author | Chris Cannam |
---|---|
date | Wed, 17 Oct 2012 16:48:02 +0100 |
parents | 7097dc91e58e |
children | a0c9cc95bcf3 |
line wrap: on
line source
class Author < ActiveRecord::Base has_many :authorships, :dependent => :destroy has_many :publications, :through => :authorships belongs_to :user def <=>(author) name.downcase <=> author.name.downcase end named_scope :like, lambda {|q| s = "%#{q.to_s.strip.downcase}%" {:conditions => ["LOWER(name) LIKE :s", {:s => s}], :order => 'name' } } end