assessment 4 Flashcards
1
Q
How do you quickly create a controller with all the default rest actions?
A
rails g scaffold_controller Users
2
Q
How do you validate that an attribute is one of a set of values?
A
validates :attribute, inclusion: { in: [val1, val2, …] }
3
Q
What’s a quick way to display the flash if there are errors?
A
render flash[:errors] if flash[:errors]