Files
animethemes-server/config/wiki.php
T
paranarimasu 3ed878ab46 fix: allow configurable domain and prefix for all supported routes (#393)
* fix: allow configurable domain and prefix for all supported routes

* style: fix StyleCI finding
2022-06-07 09:56:46 -05:00

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