Read more

List of :status symbols for rendering in Rails

Henning Koch
February 01, 2018Software engineer at makandra GmbH

When your Rails controller calls render, you can pass a :status option for the HTTP status code:

render 'results', status: 400
Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

All important status codes also have a symbol alias, which makes your code easier to read:

render 'results', status: :bad_request

Attached is a list Show archive.org snapshot of available symbol values for :status.

Posted by Henning Koch to makandra dev (2018-02-01 14:32)