12 lines
190 B
Ruby
Executable File
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
|