Standard Controller Actions

Guide for Rails' seven standard controller actions used for displaying and modifying data.

Ruby on Rails defines seven standard controller actions can be used to do common things such as display and modify data.

Seven actions

If you want to create routes for all seven actions in your app, you can add a resource route to your routes file. This resource route below maps URLs to the Messages controller’s seven actions (index, show, new, create, edit, update, and destroy):

resources :messages

If you only want to create routes for specific actions, you can use :only to fine tune the resource route. This line maps URLs only to the Message controller’s index and show actions.

resources :messages, only: [:index, :show]

Author

Codecademy Team

'The Codecademy Team, composed of experienced educators and tech experts, is dedicated to making tech skills accessible to all. We empower learners worldwide with expert-reviewed content that develops and enhances the technical skills needed to advance and succeed in their careers.'

Meet the full team