diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-08-24 18:03:41 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-08-24 18:21:42 +0000 |
commit | 09cb40220336f464e63ad4f56370c284028ccc94 (patch) | |
tree | 469f1c2276ac034793b8e8176b7d141fde20036b /lib | |
parent | e416469a409e6ff4bea84da40a5af43fe532a2ce (diff) | |
download | pleroma-09cb40220336f464e63ad4f56370c284028ccc94.tar.gz |
fe config: add collapse_message_with_subject fe option
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/twitter_api/controllers/util_controller.ex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex index 24ebdf007..7dbac620e 100644 --- a/lib/pleroma/web/twitter_api/controllers/util_controller.ex +++ b/lib/pleroma/web/twitter_api/controllers/util_controller.ex @@ -175,7 +175,9 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do showWhoToFollowPanel: Keyword.get(@instance_fe, :show_who_to_follow_panel), scopeOptionsEnabled: Keyword.get(@instance_fe, :scope_options_enabled), whoToFollowProvider: Keyword.get(@instance_fe, :who_to_follow_provider), - whoToFollowLink: Keyword.get(@instance_fe, :who_to_follow_link) + whoToFollowLink: Keyword.get(@instance_fe, :who_to_follow_link), + collapseMessageWithSubject: + Keyword.get(@instance_fe, :collapse_message_with_subject) } } }) |