mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
3ed878ab46
* fix: allow configurable domain and prefix for all supported routes * style: fix StyleCI finding
38 lines
1.3 KiB
PHP
38 lines
1.3 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'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Footer Links
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| We have footer links that direct the user to pages that are handled by animethemes-web.
|
|
| Because we want to decouple dependencies between projects, we should just register the URLs here.
|
|
|
|
|
*/
|
|
|
|
'donate' => env('WIKI_DONATE_URL'),
|
|
|
|
'faq' => env('WIKI_FAQ_URL'),
|
|
];
|