vita_app/app/controllers/public/video_files_controller.rb
Nicolas Bally 1d3af87d4c initial
2016-04-28 10:07:08 +02:00

15 lines
186 B
Ruby
Executable File

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