view vendor/plugins/redmine_bibliography/app/models/author.rb @ 424:b601a9e472f3 feature_36

Fixed minor bugs with the publications controller Started creating tests and fixtures.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 25 May 2011 17:46:49 +0100
parents b15397a5341c
children 77f88379115a
line wrap: on
line source
class Author < ActiveRecord::Base
  has_many :authorships
  has_many :publications, :through => :authorships

  belongs_to :user
  
end