Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/models/author.rb @ 1173:5d3fb66f9ae4 bug_371
Close obsolete branch bug_371
author | Chris Cannam |
---|---|
date | Fri, 03 Feb 2012 15:02:13 +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