diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-06 19:40:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-06 19:40:06 +0200 |
commit | dd38c280a50a8feb70ad341c3561fe2f87c8cf3d (patch) | |
tree | 2249217b9b7eff444d60a9962321eb56ecf0ed48 /app/views | |
parent | 9072fe5ab6464cc9c7a871d388464c7afcf41cd0 (diff) |
Fix admin dashboard missing latest features (#11505)
Fix redis-namespace deprecation warning about administrative commands
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/dashboard/index.html.haml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml index 910896075..f567b81e8 100644 --- a/app/views/admin/dashboard/index.html.haml +++ b/app/views/admin/dashboard/index.html.haml @@ -50,6 +50,8 @@ %li = feature_hint(link_to(t('admin.dashboard.feature_timeline_preview'), edit_admin_settings_path), @timeline_preview) %li + = feature_hint(link_to(t('admin.dashboard.trends'), edit_admin_settings_path), @trends_enabled) + %li = feature_hint(link_to(t('admin.dashboard.feature_relay'), admin_relays_path), @relay_enabled) %li = feature_hint(link_to(t('admin.dashboard.feature_spam_check'), edit_admin_settings_path), @spam_check_enabled) @@ -91,6 +93,10 @@ %li = feature_hint(t('admin.dashboard.single_user_mode'), @single_user_mode) %li + = feature_hint(t('admin.dashboard.authorized_fetch_mode'), @authorized_fetch) + %li + = feature_hint(t('admin.dashboard.whitelist_mode'), @whitelist_mode) + %li = feature_hint('LDAP', @ldap_enabled) %li = feature_hint('CAS', @cas_enabled) |