diff --git a/app/src/Bootstrap.php b/app/src/Bootstrap.php index 1621f44..0c6fe0e 100644 --- a/app/src/Bootstrap.php +++ b/app/src/Bootstrap.php @@ -31,7 +31,10 @@ class Bootstrap $config->merge([ 'site' => [ 'name' => "Slovocast", - 'description' => "A no-bullshit podcast hosting platform." + 'description' => "A no-bullshit podcast hosting platform.", + 'tags' => [ + 'podcast', 'hosting', 'indie', 'independent', 'easy' + ] ], ]); diff --git a/app/src/Configuration/SiteInformationSchema.php b/app/src/Configuration/SiteInformationSchema.php index 8afeb33..71ecd5e 100644 --- a/app/src/Configuration/SiteInformationSchema.php +++ b/app/src/Configuration/SiteInformationSchema.php @@ -11,7 +11,8 @@ class SiteInformationSchema { return Expect::structure([ 'name' => Expect::string()->default("Slovocast"), - 'description' => Expect::string()->required() + 'description' => Expect::string()->required(), + 'tags' => Expect::array()->required(), ]); } }