When I use the attr_accessible to specify which fields from my Model I will expose, is it true for script/console as well? I mean something that I didn't specify as attr_accessible won't be accessible as well through console ?
|
|
||||
|
|
|
This is only true for mass assignment. For instance, if you were to set
Conversely, you could set all attributes you want as accessible using However, the following will still work:
This is the same behaviour as in controllers, views, etc. |
|||
|
|
|
I found why: Specifies a white list of model attributes that can be set via mass-assignment, such as
So it means that it just avoid mass-assignment but i can still set a value. |
||||
|
|
|
The console behaves exactly as your Rails application. If you protected some attributes for a specific model, you won't be able to mass assign these attributes either from console or from the Rails app itself. |
|||
|
|
|
When you specify somethings to be eg: Suppose you made
and left out |
||||
|
|
|
If you want to expose a field form your model, you can use
or if you want add some behaviour to your attribute, you ll have to use virtual attributes
cheers. |
|||
|
|