Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/models/publication.rb @ 426:8a8b7a042b9a feature_36
more information in the publication's show view
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 27 May 2011 17:05:13 +0100 |
parents | 9595ab4cac6b |
children | 9cfd7a1d848e |
line wrap: on
line source
# vendor/plugins/redmine_bibliography/app/models/publication.rb class Publication < ActiveRecord::Base has_many :authorships has_many :authors, :through => :authorships has_one :bibtex_entry validates_presence_of :title attr_writer :current_step def current_step @current_step || steps.first end def steps %w[new review] end def next_step self.current_step = steps[steps.index(current_step)+1] end def previous_step self.current_step = steps[steps.index(current_step)-1] end def first_step? current_step == steps.first end end