diff vendor/plugins/redmine_bibliography/app/models/authorship.rb @ 481:dd242ea99fd3 feature_36

created author search virtual attribute in authorship model.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Mon, 04 Jul 2011 18:56:45 +0100
parents 9595ab4cac6b
children cc267eb99115
line wrap: on
line diff
--- a/vendor/plugins/redmine_bibliography/app/models/authorship.rb	Thu Jun 30 18:19:52 2011 +0100
+++ b/vendor/plugins/redmine_bibliography/app/models/authorship.rb	Mon Jul 04 18:56:45 2011 +0100
@@ -2,4 +2,12 @@
   belongs_to :author
   belongs_to :publication
   
+ 
+  # setter and getter for virtual attribute :author search
+  def author_search
+  end 
+  
+  def author_search=(string)
+  end
+  
 end