8 lines
136 B
Ruby
8 lines
136 B
Ruby
class Notification < ActiveRecord::Base
|
|
belongs_to :dossier
|
|
|
|
enum type_notif: {
|
|
commentaire: 'commentaire'
|
|
}
|
|
|
|
end
|