Class: Spina::Conferences::PrimerTheme::PresentationsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/spina/conferences/primer_theme/presentations_controller.rb

Overview

User-facing controller for presentations, serving both html and ics

Instance Method Summary collapse

Methods inherited from ApplicationController

#cookies_info

Instance Method Details

#showObject



10
11
12
13
14
15
16
# File 'app/controllers/spina/conferences/primer_theme/presentations_controller.rb', line 10

def show
  add_breadcrumb @presentation.name
  respond_to do |format|
    format.html
    format.ics { head :not_found }
  end
end