2016-12-13 07:42:10 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-30 09:32:26 -05:00
|
|
|
module Admin::AccountsHelper
|
2016-12-13 07:42:10 -05:00
|
|
|
def filter_params(more_params)
|
|
|
|
params.permit(:local, :remote, :by_domain, :silenced, :suspended, :recent).merge(more_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_link_to(text, more_params)
|
|
|
|
link_to text, filter_params(more_params), class: params.merge(more_params).compact == params.compact ? 'selected' : ''
|
|
|
|
end
|
|
|
|
|
2016-12-22 18:04:52 -05:00
|
|
|
def table_link_to(icon, text, path, options = {})
|
|
|
|
link_to safe_join([fa_icon(icon), text]), path, options.merge(class: 'table-action-link')
|
2016-12-13 07:42:10 -05:00
|
|
|
end
|
2016-11-30 09:32:26 -05:00
|
|
|
end
|