mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-12 11:16:43 +02:00
feat(settings): add general config for instance (site name, description and icon)
This commit is contained in:
parent
193b373bc9
commit
5c56f3e6f0
41 changed files with 533 additions and 52 deletions
|
|
@ -427,4 +427,24 @@ class App extends BaseConfig
|
|||
* Defines the root folder for media files storage
|
||||
*/
|
||||
public string $mediaRoot = 'media';
|
||||
|
||||
/**
|
||||
* --------------------------------------------------------------------------
|
||||
* Instance / Site Config
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
public string $siteName = 'Castopod';
|
||||
|
||||
public string $siteDescription = 'Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.';
|
||||
|
||||
/**
|
||||
* @var array<int|string, string>
|
||||
*/
|
||||
public array $siteIcon = [
|
||||
'ico' => '/favicon.ico',
|
||||
'64' => '/icon-64.png',
|
||||
'180' => '/icon-180.png',
|
||||
'192' => '/icon-192.png',
|
||||
'512' => '/icon-512.png',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue