mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-25 08:14:29 +02:00
* clean: Removed settings package which is now fully replaced by feature flags * clean: Remove left-over config values
20 lines
441 B
PHP
20 lines
441 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Wiki Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Some routes are handled by animethemes-web, so they need to be configurable for proper handling.
|
|
|
|
|
*/
|
|
|
|
'login' => env('WIKI_LOGIN'),
|
|
|
|
'reset_password' => env('WIKI_RESET_PASSWORD'),
|
|
];
|