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