# -*- encoding : utf-8 -*-
	class Public::VideoFilesController < ApplicationController
	
	
	layout "public"



	def show
		@video_file = VideoFile.find_by_slug(params[:slug])

	end

end