diff options
author | lain <lain@soykaf.club> | 2019-01-23 12:40:57 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-01-23 12:40:57 +0100 |
commit | e221c681dcd387aa445c35957a32fdc0189a0955 (patch) | |
tree | d5f29f97c37983ac5cc9823df6a64882772aec14 /config/config.exs | |
parent | b624b7a150c813722c4ffe82112c03e246fb5760 (diff) | |
download | pleroma-e221c681dcd387aa445c35957a32fdc0189a0955.tar.gz pleroma-e221c681dcd387aa445c35957a32fdc0189a0955.zip |
New frontend configuration mechanism.
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index d30b0aad0..7f63a0a39 100644 --- a/config/config.exs +++ b/config/config.exs @@ -154,6 +154,7 @@ config :pleroma, :markup, Pleroma.HTML.Scrubber.Default ] +# Deprecated, will be gone in 1.0 config :pleroma, :fe, theme: "pleroma-dark", logo: "/static/logo.png", @@ -172,6 +173,24 @@ config :pleroma, :fe, subject_line_behavior: "email", always_show_subject_input: true +config :pleroma, :frontend_configurations, + pleroma_fe: %{ + theme: "pleroma-dark", + logo: "/static/logo.png", + background: "/static/aurora_borealis.jpg", + redirectRootNoLogin: "/main/all", + redirectRootLogin: "/main/friends", + showInstanceSpecificPanel: true, + scopeOptionsEnabled: false, + formattingOptionsEnabled: false, + collapseMessageWithSubject: false, + hidePostStats: false, + hideUserStats: false, + scopeCopy: true, + subjectLineBehavior: "email", + alwaysShowSubjectInput: true + } + config :pleroma, :activitypub, accept_blocks: true, unfollow_blocked: true, |