mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 12:14:03 +00:00
13 lines
No EOL
243 B
Ruby
13 lines
No EOL
243 B
Ruby
class Admin::ScheduleController < ApplicationController
|
|
before_filter :verify_organizer
|
|
layout "schedule"
|
|
|
|
def show
|
|
@dates = @conference.start_date..@conference.end_date
|
|
@tracks = @conference.tracks
|
|
end
|
|
|
|
def update
|
|
|
|
end
|
|
end |