forked from fa/breadcrumb-the-shire
- add helpdesk module pages, services, settings and tests - standardize debtor list on drawer/grid contracts and robust filter drawer behavior - add helpdesk aside panel navigation and settings visibility provider - switch primary list slug to helpdesk/debitor and remove helpdesk/search compatibility - include required core contract updates for list contracts and detail/drawer integration
17 lines
585 B
PHP
17 lines
585 B
PHP
<?php
|
|
|
|
/**
|
|
* Module activation configuration.
|
|
*
|
|
* Modules listed here are loaded at boot time. The APP_ENABLED_MODULES env
|
|
* variable controls overrides with deterministic semantics:
|
|
* - APP_ENABLED_MODULES not set: use this config list
|
|
* - APP_ENABLED_MODULES='': explicit no-modules mode
|
|
* - APP_ENABLED_MODULES='a,b': exact module list from env
|
|
*
|
|
* Each entry must match a directory name under modules/ containing a module.php manifest.
|
|
*/
|
|
return [
|
|
'enabled_modules' => ['audit', 'addressbook', 'bookmarks', 'notifications', 'api-docs', 'help-center', 'helpdesk'],
|
|
];
|