Created
January 6, 2016 16:30
-
-
Save mbattur/cfa3088e0e69f1f6f79d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CRUD stands for Create Read Update Delete. CRUD actions align with controller HTTP verbs and controller actions in a Rails app. | |
| CRUD Action HTTP Verb Rails Action(s) | |
| Create POST create | |
| Read GET new/show/index/edit | |
| Update PUT/PATCH update | |
| Delete DELETE destroy | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment