Browse Source

Clean up admin UI for accounts (#6004)

* Add staff filter to admin UI for accounts, remove obsolete columns

* Only display OStatus section in admin UI for accounts when OStatus data
pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
20a6584d2d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 20 deletions
  1. +2
    -1
      app/controllers/admin/accounts_controller.rb
  2. +1
    -1
      app/helpers/admin/filter_helper.rb
  3. +2
    -0
      app/models/account_filter.rb
  4. +3
    -14
      app/views/admin/accounts/_account.html.haml
  5. +6
    -3
      app/views/admin/accounts/index.html.haml
  6. +2
    -1
      app/views/admin/accounts/show.html.haml
  7. +1
    -0
      config/locales/en.yml

+ 2
- 1
app/controllers/admin/accounts_controller.rb View File

@ -89,7 +89,8 @@ module Admin
:username, :username,
:display_name, :display_name,
:email, :email,
:ip
:ip,
:staff
) )
end end
end end

+ 1
- 1
app/helpers/admin/filter_helper.rb View File

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
module Admin::FilterHelper module Admin::FilterHelper
ACCOUNT_FILTERS = %i(local remote by_domain silenced suspended recent username display_name email ip).freeze
ACCOUNT_FILTERS = %i(local remote by_domain silenced suspended recent username display_name email ip staff).freeze
REPORT_FILTERS = %i(resolved account_id target_account_id).freeze REPORT_FILTERS = %i(resolved account_id target_account_id).freeze
INVITE_FILTER = %i(available expired).freeze INVITE_FILTER = %i(available expired).freeze

+ 2
- 0
app/models/account_filter.rb View File

@ -45,6 +45,8 @@ class AccountFilter
else else
Account.default_scoped Account.default_scoped
end end
when 'staff'
accounts_with_users.merge User.staff
else else
raise "Unknown filter: #{key}" raise "Unknown filter: #{key}"
end end

+ 3
- 14
app/views/admin/accounts/_account.html.haml View File

@ -4,22 +4,11 @@
%td.domain %td.domain
- unless account.local? - unless account.local?
= link_to account.domain, admin_accounts_path(by_domain: account.domain) = link_to account.domain, admin_accounts_path(by_domain: account.domain)
%td.protocol
- unless account.local?
= account.protocol.humanize
%td.confirmed
- if account.local?
- if account.user_confirmed?
%i.fa.fa-check
- else
%i.fa.fa-times
%td.subscribed
%td
- if account.local? - if account.local?
= t('admin.accounts.location.local')
- elsif account.subscribed?
%i.fa.fa-check
= t("admin.accounts.roles.#{account.user&.role}")
- else - else
%i.fa.fa-times
= account.protocol.humanize
%td %td
= table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}") = table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}")
= table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account) = table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account)

+ 6
- 3
app/views/admin/accounts/index.html.haml View File

@ -30,6 +30,11 @@
= filter_link_to t('admin.accounts.moderation.suspended'), {suspended: nil}, {suspended: '1'} = filter_link_to t('admin.accounts.moderation.suspended'), {suspended: nil}, {suspended: '1'}
- else - else
= filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1' = filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1'
.filter-subset
%strong= t('admin.accounts.role')
%ul
%li= filter_link_to t('admin.accounts.moderation.all'), staff: nil
%li= filter_link_to t('admin.accounts.roles.staff'), staff: '1'
.filter-subset .filter-subset
%strong= t('admin.accounts.order.title') %strong= t('admin.accounts.order.title')
%ul %ul
@ -56,9 +61,7 @@
%tr %tr
%th= t('admin.accounts.username') %th= t('admin.accounts.username')
%th= t('admin.accounts.domain') %th= t('admin.accounts.domain')
%th= t('admin.accounts.protocol')
%th= t('admin.accounts.confirmed')
%th= fa_icon 'paper-plane-o'
%th
%th %th
%tbody %tbody
= render @accounts = render @accounts

+ 2
- 1
app/views/admin/accounts/show.html.haml View File

@ -104,7 +104,7 @@
- else - else
= link_to t('admin.accounts.perform_full_suspension'), admin_account_suspension_path(@account.id), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }, class: 'button' if can?(:suspend, @account) = link_to t('admin.accounts.perform_full_suspension'), admin_account_suspension_path(@account.id), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }, class: 'button' if can?(:suspend, @account)
- unless @account.local?
- if !@account.local? && @account.hub_url.present?
%hr %hr
%h3 OStatus %h3 OStatus
@ -132,6 +132,7 @@
- if @account.subscribed? - if @account.subscribed?
= link_to t('admin.accounts.unsubscribe'), unsubscribe_admin_account_path(@account.id), method: :post, class: 'button negative' if can?(:unsubscribe, @account) = link_to t('admin.accounts.unsubscribe'), unsubscribe_admin_account_path(@account.id), method: :post, class: 'button negative' if can?(:unsubscribe, @account)
- if !@account.local? && @account.inbox_url.present?
%hr %hr
%h3 ActivityPub %h3 ActivityPub

+ 1
- 0
config/locales/en.yml View File

@ -116,6 +116,7 @@ en:
roles: roles:
admin: Administrator admin: Administrator
moderator: Moderator moderator: Moderator
staff: Staff
user: User user: User
salmon_url: Salmon URL salmon_url: Salmon URL
search: Search search: Search

Loading…
Cancel
Save