idn_app/app/controllers/public/video_files_controller.rb
Nicolas Bally b5690bc6f2 initial
2016-07-25 15:55:11 +02:00

15 lines
186 B
Ruby

# -*- encoding : utf-8 -*-
class Public::VideoFilesController < ApplicationController
layout "public"
def show
@video_file = VideoFile.find_by_slug(params[:slug])
end
end