Add tags to the site schema configuration.
This commit is contained in:
parent
c478be5601
commit
7967f325fa
@ -31,7 +31,10 @@ class Bootstrap
|
|||||||
$config->merge([
|
$config->merge([
|
||||||
'site' => [
|
'site' => [
|
||||||
'name' => "Slovocast",
|
'name' => "Slovocast",
|
||||||
'description' => "A no-bullshit podcast hosting platform."
|
'description' => "A no-bullshit podcast hosting platform.",
|
||||||
|
'tags' => [
|
||||||
|
'podcast', 'hosting', 'indie', 'independent', 'easy'
|
||||||
|
]
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@ -11,7 +11,8 @@ class SiteInformationSchema
|
|||||||
{
|
{
|
||||||
return Expect::structure([
|
return Expect::structure([
|
||||||
'name' => Expect::string()->default("Slovocast"),
|
'name' => Expect::string()->default("Slovocast"),
|
||||||
'description' => Expect::string()->required()
|
'description' => Expect::string()->required(),
|
||||||
|
'tags' => Expect::array()->required(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user