config: chase pleroma-fe updates from MR pleroma-fe!324.

This commit is contained in:
William Pitcock 2018-08-31 04:01:21 +00:00
parent a26d5e6b2a
commit 856b5e1ca4
2 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,8 @@ config :pleroma, :instance,
config :pleroma, :fe,
theme: "pleroma-dark",
logo: "/static/logo.png",
logo_mask: true,
logo_margin: "0.1em",
background: "/static/aurora_borealis.jpg",
redirect_root_no_login: "/main/all",
redirect_root_login: "/main/friends",

View File

@ -168,6 +168,8 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
theme: Keyword.get(@instance_fe, :theme),
background: Keyword.get(@instance_fe, :background),
logo: Keyword.get(@instance_fe, :logo),
logoMask: Keyword.get(@instance_fe, :logo_mask),
logoMargin: Keyword.get(@instance_fe, :logo_margin),
redirectRootNoLogin: Keyword.get(@instance_fe, :redirect_root_no_login),
redirectRootLogin: Keyword.get(@instance_fe, :redirect_root_login),
chatDisabled: !Keyword.get(@instance_chat, :enabled),