In-app notification system with topbar bell icon, dropdown panel, mark-as-read/dismiss actions, and scheduled cleanup of old read notifications. Includes event listeners for user.created and user.deleted events, authorization policy, and full test coverage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
537 B
PHP
17 lines
537 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' => ['addressbook', 'bookmarks', 'notifications'],
|
|
];
|