danielle_app/app/controllers/public/photos_controller.rb
2013-09-18 09:45:52 +02:00

20 lines
208 B
Ruby

class Public::PhotosController < ApplicationController
layout "public"
def index
@title = "Reposoir"
@photos = Photo.all
end
def show
@photo = Photo.find(params[:id])
end
end