diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-05-20 12:22:31 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-05-20 12:22:31 -0500 |
commit | 4c48626585d2efae21625d106dac7e28b3227925 (patch) | |
tree | 1154679a4f63782fbb10b287e51571ddf317ecd0 | |
parent | 918ee46417036e3325b6a1d6e8d51ca78bcb31ac (diff) | |
download | pleroma-4c48626585d2efae21625d106dac7e28b3227925.tar.gz |
Also add new sidebarRight setting
-rw-r--r-- | config/config.exs | 1 | ||||
-rw-r--r-- | config/description.exs | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 7b99a41aa..e9a727557 100644 --- a/config/config.exs +++ b/config/config.exs @@ -292,6 +292,7 @@ config :pleroma, :frontend_configurations, redirectRootLogin: "/main/friends", redirectRootNoLogin: "/main/all", scopeCopy: true, + sidebarRight: false, showFeaturesPanel: true, showInstanceSpecificPanel: false, subjectLineBehavior: "email", diff --git a/config/description.exs b/config/description.exs index 324cae8cf..716bcf4ff 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1117,6 +1117,7 @@ config :pleroma, :config_description, [ redirectRootLogin: "/main/friends", redirectRootNoLogin: "/main/all", scopeCopy: true, + sidebarRight: false, showFeaturesPanel: true, showInstanceSpecificPanel: false, subjectLineBehavior: "email", @@ -1257,6 +1258,12 @@ config :pleroma, :config_description, [ description: "Copy the scope (private/unlisted/public) in replies to posts by default" }, %{ + key: :sidebarRight, + label: "Sidebar on Right", + type: :boolean, + description: "Change alignment of sidebar and panels to the right." + }, + %{ key: :showFeaturesPanel, label: "Show instance features panel", type: :boolean, |