Sha256: c6ccb34f622fa97d0655e9521f49d1b856445bfd8782962236c590a3ed1a89ed

Contents?: true

Size: 326 Bytes

Versions: 4

Compression:

Stored size: 326 Bytes

Contents

module ThinkFeelDoEngine
  module Participants
    # Enables Participants to access Slideshows directly.
    class PublicSlidesController < ApplicationController
      def show
        @slideshow = BitCore::Slideshow.find(params[:slideshow_id])
        @slide = @slideshow.slides.find(params[:id])
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
think_feel_do_engine-3.10.9 app/controllers/think_feel_do_engine/participants/public_slides_controller.rb
think_feel_do_engine-3.10.8 app/controllers/think_feel_do_engine/participants/public_slides_controller.rb
think_feel_do_engine-3.10.7 app/controllers/think_feel_do_engine/participants/public_slides_controller.rb
think_feel_do_engine-3.10.6 app/controllers/think_feel_do_engine/participants/public_slides_controller.rb