To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / redmine_bibliography / app / models / publication.rb @ 385:a6f8c0584a92

History | View | Annotate | Download (342 Bytes)

1 385:a6f8c0584a92 luis
# vendor/plugins/redmine_bibliography/app/models/publication.rb
2
3 328:aed18b463206 luis
class Publication < ActiveRecord::Base
4
  has_many :authorships
5
  has_many :authors, :through => :authorships
6 376:ad71d0604ac2 luis
7
  validates_presence_of :title
8 385:a6f8c0584a92 luis
9
  attr_writer :current_step
10
11
  def current_step
12
    @current_step || steps.first
13
  end
14
15
  def steps
16
    %w[new review]
17
  end
18
19 376:ad71d0604ac2 luis
20 328:aed18b463206 luis
end