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
2013-01-10 22:21:23 +01:00

8 lines
145 B
Ruby

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