Files
animethemes-server/config/wiki.php
T
paranarimasu 6d66a3b6d1 feat(auth): remove jetstream auth scaffolding in favor of fortify SPA (#468)
* feat(auth): remove jetstream auth scaffolding in favor of fortify SPA

* fix: don't attempt to install non-existent npm dependencies in test runner
2022-09-26 15:03:01 -05:00

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'),
];