Guest User

Untitled

a guest
May 27th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. # GET /people/1
  2. # GET /people/1.xml
  3. def show
  4. @person = Person.find(params[:id])
  5. @kases= @person.kases(:all)
  6.  
  7. respond_to do |format|
  8. format.html # show.html.erb
  9. format.xml { render :xml => @person }
  10. format.mobile
  11. end
  12. end
Add Comment
Please, Sign In to add comment