mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
12 lines
275 B
Ruby
12 lines
275 B
Ruby
class ConferenceController < ApplicationController
|
|
load_and_authorize_resource find_by: :short_title
|
|
|
|
def show
|
|
@keynote_speakers = @conference.keynote_speakers
|
|
end
|
|
|
|
def gallery_photos
|
|
@photos = @conference.photos
|
|
render 'photos', formats: [:js]
|
|
end
|
|
end
|