Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/models/author.rb @ 1474:c4436fec34bf bug_494
Close obsolete branch bug_494
author | Chris Cannam |
---|---|
date | Sat, 10 Nov 2012 13:57:53 +0000 |
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