Mercurial > hg > soundsoftware-site
annotate vendor/plugins/redmine_bibliography/app/models/bibtex_entry.rb @ 546:7c4b96efa402 feature_36
Closes Feature #240 (adding a new publication from the project's main page).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 29 Jul 2011 18:14:28 +0100 |
parents | f05f3a9ef569 |
children | 658cfb481618 |
rev | line source |
---|---|
luis@393 | 1 class BibtexEntry < ActiveRecord::Base |
luis@544 | 2 unloadable |
luis@544 | 3 |
luis@393 | 4 belongs_to :publication |
luis@544 | 5 validates_presence_of :entry_type |
luis@544 | 6 |
luis@544 | 7 def entry_type_name |
luis@544 | 8 entry_type = self.entry_type |
luis@544 | 9 BibtexEntryType.find(entry_type).name |
luis@544 | 10 end |
luis@544 | 11 |
luis@544 | 12 |
luis@405 | 13 |
luis@393 | 14 end |