demarches-normaliennes/app/models/commentaire.rb

11 lines
207 B
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
class Commentaire < ActiveRecord::Base
belongs_to :dossier
2016-11-14 18:00:26 +01:00
belongs_to :champ
belongs_to :piece_justificative
def header
"#{email}, " + created_at.localtime.strftime('%d %b %Y %H:%M')
end
2015-08-10 11:05:06 +02:00
end