summaryrefslogtreecommitdiff
path: root/config/description.exs
diff options
context:
space:
mode:
authorKokaKiwi <kokakiwi+git@kokakiwi.net>2019-10-11 14:48:01 +0200
committerKokaKiwi <kokakiwi+git@kokakiwi.net>2019-10-19 12:15:14 +0200
commit638457ba94931c35268cf5fb4d2a432a0def6bdd (patch)
tree2ea3b62b0e493e39509486cade210e33f9fd17a9 /config/description.exs
parentfd6d05dc45e2fdff56e777431b303fc24ef7912f (diff)
downloadpleroma-638457ba94931c35268cf5fb4d2a432a0def6bdd.tar.gz
pleroma-638457ba94931c35268cf5fb4d2a432a0def6bdd.zip
MastoFE: Add PWA manifest.
Diffstat (limited to 'config/description.exs')
-rw-r--r--config/description.exs39
1 files changed, 39 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs
index 571c64bc1..70e963399 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -1100,6 +1100,45 @@ config :pleroma, :config_description, [
},
%{
group: :pleroma,
+ key: :manifest,
+ type: :group,
+ description:
+ "This section describe PWA manifest instance-specific values. Currently this option relate only for MastoFE",
+ children: [
+ %{
+ key: :icons,
+ type: {:list, :map},
+ description: "Describe the icons of the app",
+ suggestion: [
+ %{
+ src: "/static/logo.png"
+ },
+ %{
+ src: "/static/icon.png",
+ type: "image/png"
+ },
+ %{
+ src: "/static/icon.ico",
+ sizes: "72x72 96x96 128x128 256x256"
+ }
+ ]
+ },
+ %{
+ key: :theme_color,
+ type: :string,
+ description: "Describe the theme color of the app",
+ suggestions: ["#282c37", "mediumpurple"]
+ },
+ %{
+ key: :background_color,
+ type: :string,
+ description: "Describe the background color of the app",
+ suggestions: ["#191b22", "aliceblue"]
+ }
+ ]
+ },
+ %{
+ group: :pleroma,
key: :mrf_simple,
type: :group,
description: "Message Rewrite Facility",