I have a situation where an attribute can be created through a JSON API. But once it is created, I want to prevent it from ever being updated.
This constraint causes my first solution, which is using attr_accessible
, to be insufficient. Is there a nice way to handle this type of situation in rails, or do I have to perform a manual check in the update
method?