mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-08 07:55:14 +00:00
8b74aa4217
* Simplify admin/reports controller filtering for index * Rename parameter to resolved * Fix issue where reports view could not access filter_link_to * Add coverage for admin/reports controller * DRY up resolution of related reports for target account * Clean up admin/reports routes * Add Report#statuses method * DRY up current account action taken params * Rubocop styles
27 lines
698 B
Ruby
27 lines
698 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin::AccountsHelper
|
|
def filter_params(more_params)
|
|
params.permit(:local, :remote, :by_domain, :silenced, :suspended, :recent, :resolved).merge(more_params)
|
|
end
|
|
|
|
def filter_link_to(text, more_params)
|
|
new_url = filtered_url_for(more_params)
|
|
link_to text, new_url, class: filter_link_class(new_url)
|
|
end
|
|
|
|
def table_link_to(icon, text, path, options = {})
|
|
link_to safe_join([fa_icon(icon), text]), path, options.merge(class: 'table-action-link')
|
|
end
|
|
|
|
private
|
|
|
|
def filter_link_class(new_url)
|
|
filtered_url_for(params) == new_url ? 'selected' : ''
|
|
end
|
|
|
|
def filtered_url_for(params)
|
|
url_for filter_params(params)
|
|
end
|
|
end
|