Improved admin UI
This commit is contained in:
parent
668013265c
commit
76ec907993
23 changed files with 259 additions and 49 deletions
|
@ -1,2 +1,15 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Admin::AccountsHelper
|
||||
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
|
||||
|
||||
def table_link_to(icon, text, path)
|
||||
link_to safe_join([fa_icon(icon), text]), path, class: 'table-action-link'
|
||||
end
|
||||
end
|
||||
|
|
4
app/helpers/admin/domain_blocks_helper.rb
Normal file
4
app/helpers/admin/domain_blocks_helper.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Admin::DomainBlocksHelper
|
||||
end
|
|
@ -1,2 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Admin::PubsubhubbubHelper
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue