ballalama3_app/app/controllers/public/video_files_controller.rb
Nicolas Bally bc774b8159 initial
2016-12-01 10:54:16 +01: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