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