Writing your own features
Features simplify writing code that is shared between your resources as they automatically handle merging of configuration.
A simple feature feature could be implemented as follows:
As you can see, in the example above you have to take care of merging previous options, which could be problematic. Fortunately AdminJS gives you helper functions which help with this:
a factory function buildFeature,
optional helper mergeResourceOptions (when you need more control)
This is how a feature could look like when buildFeature is used:
Last updated