mirror of
https://github.com/openSUSE/osem.git
synced 2026-04-30 19:53:05 -04:00
14 lines
327 B
Ruby
14 lines
327 B
Ruby
class ScheduleController < ApplicationController
|
|
|
|
layout "application"
|
|
caches_page :index
|
|
|
|
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
|