Merge branch 'dev'
This commit is contained in:
commit
a36a9bebad
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,5 @@
|
|||
class Commentaire < ApplicationRecord
|
||||
belongs_to :dossier, touch: true
|
||||
belongs_to :champ
|
||||
belongs_to :piece_justificative
|
||||
|
||||
mount_uploader :file, CommentaireFileUploader
|
||||
|
@ -13,6 +12,10 @@ class Commentaire < ApplicationRecord
|
|||
|
||||
after_create :notify
|
||||
|
||||
def self.columns
|
||||
super.reject { |c| c.name == "champ" }
|
||||
end
|
||||
|
||||
def header
|
||||
"#{sender}, #{I18n.l(created_at, format: '%d %b %Y %H:%M')}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue