Open
Description
Implement a system to make possible for each project to define it's own default values. For example on belongs_to
fields the can_create
option is true
by default. Let's say we want the default to be false
Possible approach:
- Define a default hash for each field and assign values like
@can_create = args[:can_create] || DEFAULTS[:can_create]
- Make possible to merge custom options on boot that changes the default hash to the desired defaults
Metadata
Metadata
Assignees
Type
Projects
Status
Backlog