Sha256: b34935bae8ccd551f273f31191839769f78cf9687e22cc3bf68066d5111619e5

Contents?: true

Size: 392 Bytes

Versions: 2

Compression:

Stored size: 392 Bytes

Contents

require_dependency "think_feel_do_engine/application_controller"

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

2 entries across 2 versions & 1 rubygems

Version Path
think_feel_do_engine-3.11.0 app/controllers/think_feel_do_engine/participants/public_slides_controller.rb
think_feel_do_engine-3.10.10 app/controllers/think_feel_do_engine/participants/public_slides_controller.rb