diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-28 02:16:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 02:16:01 +0100 |
commit | 08ec7435ce10fc74c257e089d6a2e909287e3daa (patch) | |
tree | b529fdc6ee76c094b670a7409fe34f2cc0a4844c /app/helpers | |
parent | 683013756e9c57dd1944856dd154dba1be4097b9 (diff) |
Add order options to relationship manager UI (#10404)
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/admin/filter_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/admin/filter_helper.rb b/app/helpers/admin/filter_helper.rb index 4fd36ef42..0bda25974 100644 --- a/app/helpers/admin/filter_helper.rb +++ b/app/helpers/admin/filter_helper.rb @@ -7,7 +7,7 @@ module Admin::FilterHelper CUSTOM_EMOJI_FILTERS = %i(local remote by_domain shortcode).freeze TAGS_FILTERS = %i(hidden).freeze INSTANCES_FILTERS = %i(limited by_domain).freeze - FOLLOWERS_FILTERS = %i(relationship status by_domain activity).freeze + FOLLOWERS_FILTERS = %i(relationship status by_domain activity order).freeze FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS + INVITE_FILTER + CUSTOM_EMOJI_FILTERS + TAGS_FILTERS + INSTANCES_FILTERS + FOLLOWERS_FILTERS |