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 money motivation

Opscomplete powered by makandra brand

Save money by migrating from AWS to our fully managed hosting in Germany.

  • Trusted by over 100 customers
  • Ready to use with Ruby, Node.js, PHP
  • Proactive management by operations experts
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)