Guest User

Untitled

a guest
Oct 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. format.json {
  2. render reservation_delivery_response
  3. }
  4. format.xml {
  5. render reservation_delivery_response
  6. }
  7.  
  8. private
  9. def reservation_delivery_response
  10. if @reservations = CrsReservation.reservation_delivery(params)
  11. out = {:json=>@reservations}
  12. else
  13. out = {:text=>'You are not permitted to view this location.'}
  14. end
  15. end
Add Comment
Please, Sign In to add comment