mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-23 14:06:58 +00:00
feat(PWA): ✨ add support for description field
This commit is contained in:
parent
79c0e453d3
commit
3073f52a61
|
@ -74,6 +74,8 @@ Name | Description | Values | Default
|
|||
```php
|
||||
$wgCitizenManifestOptions = [
|
||||
'background_color' => '#0d0e12',
|
||||
'description' => '',
|
||||
'short_name' => '',
|
||||
'theme_color' => "#0d0e12",
|
||||
'icons' => [],
|
||||
];
|
||||
|
|
|
@ -95,6 +95,10 @@ class ApiWebappManifest extends ApiBase {
|
|||
$resultObj->addValue( null, 'short_name', $options['short_name'] );
|
||||
}
|
||||
|
||||
if ( $options['description'] !== '' ) {
|
||||
$resultObj->addValue( null, 'description', $options['description'] );
|
||||
}
|
||||
|
||||
$main->setCacheMaxAge( self::CACHE_MAX_AGE );
|
||||
$main->setCacheMode( 'public' );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue