How to customize bulk actions 🚀
Starting from version 1.20.5, the configuration-wui.json.sample
file has 3 new properties relevant to bulk actions:
"hideBulk"
"hideBulkDelete"
"hideBulkDownload"
By default, the 3 properties are set to false and bulk features are active.
If you need to disable any option, open the configuration-wui.json.sample
file, copy the "hideBulk"
, "hideBulkDelete"
and "hideBulkDownload"
properties to your configuration-wui.json
modifying them as follows:
To disable the Bulk action feature, set the
hideBulk
value totrue
or remove it..To disable the Bulk action feature, set the
hideBulk
value totrue
or remove it.To enable the feature without Download, the
hideBulk
value must be set tofalse
and thehideBulkDownload
value totrue
.To enable the feature without Delete, the
hideBulk
value must be set tofalse
and thehideBulkDelete
value totrue
.
Please note that other combinations may not work, so follow only the instructions above.