mirror of
https://github.com/openSUSE/osem.git
synced 2026-04-28 02:41:25 -04:00
13 lines
304 B
Ruby
13 lines
304 B
Ruby
class ScheduleController < ApplicationController
|
|
|
|
layout "application"
|
|
|
|
def index
|
|
@conference = Conference.find_all_by_short_title(params[:conference_id]).first
|
|
@events = @conference.events
|
|
@dates = @conference.start_date..@conference.end_date
|
|
@rooms = @conference.rooms
|
|
end
|
|
|
|
end
|