diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-23 20:33:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 20:33:20 +0100 |
commit | c0006a004d0e58bb3ad356759c17e60f28975b61 (patch) | |
tree | c7db8022c8759f30cddc497e3d7aa1c474dbd9fd /app/views/admin/accounts | |
parent | 27f9aa34776e89d0e56fc8aba7a52e075927b146 (diff) |
Change followers page to relationships page in admin UI (#12927)
Allow browsing and filtering all relationships instead of just followers, unify the codebase with the user-facing relationship manager, add ability to see who the user invited
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r-- | app/views/admin/accounts/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml index 1429f56d5..f191d8f25 100644 --- a/app/views/admin/accounts/show.html.haml +++ b/app/views/admin/accounts/show.html.haml @@ -41,7 +41,7 @@ .dashboard__counters__num= number_to_human_size @account.media_attachments.sum('file_file_size') .dashboard__counters__label= t 'admin.accounts.media_attachments' %div - = link_to admin_account_followers_path(@account.id) do + = link_to admin_account_relationships_path(@account.id, location: 'local') do .dashboard__counters__num= number_with_delimiter @account.local_followers_count .dashboard__counters__label= t 'admin.accounts.followers' %div |