Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Build a Simple Ruby on Rails Application Frontend Development Introducing Views

Edward Poon
Edward Poon
9,313 Points

Question on method: :delete

Why do we need to do method: :delete when we already know that the Destroy method is going to be called which will destroy that particular status?

1 Answer

Justin Black
Justin Black
24,793 Points

The reason we do method: :delete, is to identify that we are sending this via the DELETE http header. Since we are passing it the status itself, failure to do method: :delete would send it via a GET http header, and thus would not delete the status.