Guest User

Untitled

a guest
Apr 24th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # GET /exams/1
  2. # GET /exams/1.xml
  3. def show
  4. @exam = Exam.find(params[:id])
  5. session[:exam] = @exam
  6.  
  7.  
  8. respond_to do |format|
  9. format.html # show.html.erb
  10. format.xml { render :xml => @exam }
  11. end
  12. end
Add Comment
Please, Sign In to add comment