Sha256: 255c8566011b4afd171c203d2b7b1fefcd47a99268480cbe8dc58f8c8b53f95a

Contents?: true

Size: 333 Bytes

Versions: 6

Compression:

Stored size: 333 Bytes

Contents

module Pageflow
  class VideoFilesController < Pageflow::ApplicationController
    before_filter :prevent_ssl

    def show
      respond_to do |format|
        format.html do
          entry = PublishedEntry.find(params[:entry_id])
          @video_file = entry.video_files.find(params[:id])
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pageflow-0.1.0 app/controllers/pageflow/video_files_controller.rb
pageflow-0.0.5 app/controllers/pageflow/video_files_controller.rb
pageflow-0.0.4 app/controllers/pageflow/video_files_controller.rb
pageflow-0.0.3 app/controllers/pageflow/video_files_controller.rb
pageflow-0.0.2 app/controllers/pageflow/video_files_controller.rb
pageflow-0.0.1 app/controllers/pageflow/video_files_controller.rb