Clean up about page (#1282)
* Add InstancePresenter to expose site details * Clean up about controller, use instance presenter
This commit is contained in:
parent
53eb31f124
commit
e5282e4ec0
8 changed files with 175 additions and 55 deletions
28
app/presenters/instance_presenter.rb
Normal file
28
app/presenters/instance_presenter.rb
Normal file
|
@ -0,0 +1,28 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class InstancePresenter
|
||||
delegate(
|
||||
:closed_registrations_message,
|
||||
:contact_email,
|
||||
:open_registrations,
|
||||
:site_description,
|
||||
:site_extended_description,
|
||||
to: Setting
|
||||
)
|
||||
|
||||
def contact_account
|
||||
Account.find_local(Setting.site_contact_username)
|
||||
end
|
||||
|
||||
def user_count
|
||||
Rails.cache.fetch('user_count') { User.count }
|
||||
end
|
||||
|
||||
def status_count
|
||||
Rails.cache.fetch('local_status_count') { Status.local.count }
|
||||
end
|
||||
|
||||
def domain_count
|
||||
Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) }
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue