Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def index
  2. @students = Student.all_with_school_details
  3.  
  4. respond_to do |format|
  5. format.html
  6. format.csv { send_data @students.as_csv }
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement