Back
accessibleProperties()
Use this method to specify which properties can be set through mass assignment.
// Make `isActive` the only property that can be set through mass assignment operations like `updateAll()`. config() { accessibleProperties("isActive"); }
Copied!