0
0
Fork 0

Clean up about page (#1282)

* Add InstancePresenter to expose site details

* Clean up about controller, use instance presenter
This commit is contained in:
Matt Jankowski 2017-04-09 08:47:25 -04:00 committed by Eugen
parent 53eb31f124
commit e5282e4ec0
8 changed files with 175 additions and 55 deletions

View 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