pendragon_app/app/controllers/public/realisations_controller.rb
2017-01-26 23:21:49 +01:00

12 lines
190 B
Ruby
Executable File

# -*- encoding : utf-8 -*-
class Public::RealisationsController < ApplicationController
layout "public"
def show
@realisation = Realisation.find_by_slug(params[:id])
end
end