10 lines
183 B
Ruby
10 lines
183 B
Ruby
|
|
class ProductPagesController < ApplicationController
|
||
|
|
|
||
|
|
def show
|
||
|
|
@product_page = ProductPage.find(params[:id])
|
||
|
|
#sleep(2)
|
||
|
|
render :inline => @product_page.html
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|