mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
22 lines
498 B
PHP
22 lines
498 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'),
|
|
|
|
'external_profile' => env('WIKI_EXTERNAL_PROFILE'),
|
|
];
|