This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/app/controllers/items_controller.rb
2012-04-09 22:48:10 +02:00

7 lines
130 B
Ruby

class ItemsController < ApplicationController
def show
@item = Item.find(params[:id])
render :layout => false
end
end