mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-06 20:55:04 +02:00
* feat(auth): remove jetstream auth scaffolding in favor of fortify SPA * fix: don't attempt to install non-existent npm dependencies in test runner
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Featured Theme
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| On the home page of the wiki client, there is a component for a featured theme.
|
|
| The featured theme will showcase an OP/ED picked by staff or patrons.
|
|
| The video for the featured theme will play muted, blurred and looped in the background of the page.
|
|
| To resolve the featured theme, we need to provide the desired pivot row between entry and video.
|
|
| To resolve the desired pivot row, these values should correspond to the primary keys of the respective models.
|
|
|
|
|
*/
|
|
|
|
'featured_entry' => (int) env('WIKI_FEATURED_ENTRY'),
|
|
|
|
'featured_video' => (int) env('WIKI_FEATURED_VIDEO'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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'),
|
|
];
|