2014-08-06 14:47:47 +02:00
|
|
|
# Manages data related to events' moderation
|
2014-01-06 11:22:39 +01:00
|
|
|
class Note < ActiveRecord::Base
|
|
|
|
belongs_to :event
|
|
|
|
belongs_to :author, class_name: User
|
2014-03-06 21:49:30 +01:00
|
|
|
|
2014-09-03 02:14:21 +02:00
|
|
|
validates :contents, presence: true
|
|
|
|
|
2014-03-06 21:49:30 +01:00
|
|
|
# Setup the magic time stamp so it uses the "date" column
|
|
|
|
def timestamp_attributes_for_create
|
|
|
|
super << :date
|
|
|
|
end
|
2014-01-06 11:22:39 +01:00
|
|
|
end
|