Guest User

Untitled

a guest
Apr 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # GET /posts
  2. # GET /posts.xml
  3. def index
  4. @posts = Post.find(:all)
  5.  
  6. #flash[:notice] = 'Post was found.' + @post
  7. raise @post.inspect.to_s
  8.  
  9. respond_to do |format|
  10. format.html # index.html.erb
  11. format.xml { render :xml => @posts }
  12. end
  13. end
Add Comment
Please, Sign In to add comment