Guest User

Untitled

a guest
Jan 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class LocationController < ApplicationController
  2. def show
  3. @locations = Location.find(:all, :order => "id DESC", :limit => 10)
  4.  
  5. respond_to do |format|
  6. format.html # show.html.erb
  7. format.xml {render :xml => @locations }
  8. end
  9. end
  10.  
  11. end
Add Comment
Please, Sign In to add comment