Method: Cmtool::QuotesController#show

Defined in:
app/controllers/cmtool/quotes_controller.rb

#showObject

GET /quotes/1 GET /quotes/1.xml



16
17
18
19
20
21
22
23
# File 'app/controllers/cmtool/quotes_controller.rb', line 16

def show
  @quote = Cmtool::Quote.find(params[:id])

  respond_to do |format|
    format.html # show.html.erb
    format.xml  { render :xml => @quote }
  end
end