2021-07-22 14:34:07 +02:00
|
|
|
class BulkMessage < ApplicationRecord
|
|
|
|
belongs_to :instructeur
|
2022-11-08 12:42:16 +01:00
|
|
|
has_and_belongs_to_many :groupe_instructeurs, -> { order(:label) }
|
2021-08-02 11:19:20 +02:00
|
|
|
has_one_attached :piece_jointe
|
2021-07-22 14:34:07 +02:00
|
|
|
end
|