osem-fcy/app/models/event_schedule.rb
Ana dfd64a4510 Integrate the schedule in the admin interface
Integrate the schedule in the admin interface while adapting it to the new associations and models.
2016-08-11 15:06:52 +02:00

9 lines
150 B
Ruby

class EventSchedule < ActiveRecord::Base
belongs_to :schedule
belongs_to :event
belongs_to :room
def room_guid
room.try(:guid)
end
end