annotate vendor/plugins/redmine_bibliography/app/models/author.rb @ 462:b02b2eb2a312 feature_36

Searching for publications via AJAX call; the publication ID is not being sent correctly, so still shows the current publication's associated projects in the select list.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 21 Jun 2011 01:27:41 +0100
parents 77f88379115a
children a7dc708d48a1
rev   line source
luis@328 1 class Author < ActiveRecord::Base
luis@328 2 has_many :authorships
luis@328 3 has_many :publications, :through => :authorships
luis@403 4
luis@445 5 # belongs_to :user
luis@403 6
luis@328 7 end