unepwcmc/SAPI

View on GitHub
app/models/document_tag/proposal_outcome.rb

Summary

Maintainability
A
0 mins
Test Coverage
# == Schema Information
#
# Table name: document_tags
#
#  id         :integer          not null, primary key
#  name       :text             not null
#  type       :string(255)
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

class DocumentTag::ProposalOutcome < DocumentTag

  def self.display_name
    'Proposal outcome'
  end

  def self.elibrary_document_types
    [Document::Proposal]
  end

end