diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-13 20:14:21 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-13 20:16:38 +0100 |
commit | c01dd089ff3149ce6b5bf539143b335a84c08eee (patch) | |
tree | 00e23e23befc3e0a783126bb687c70602cc11e02 /app/controllers | |
parent | e25170f960bdc890e4f8a6b1373ab55192669629 (diff) |
Adding about/more page with extended information that can be set up by an admin
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/about_controller.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/about_controller.rb b/app/controllers/about_controller.rb index b69c8e790..491036db2 100644 --- a/app/controllers/about_controller.rb +++ b/app/controllers/about_controller.rb @@ -8,9 +8,13 @@ class AboutController < ApplicationController end def more + @description = Setting.site_description @extended_description = Setting.site_extended_description @contact_account = Account.find_local(Setting.site_contact_username) @contact_email = Setting.site_contact_email + @user_count = Rails.cache.fetch('user_count') { User.count } + @status_count = Rails.cache.fetch('local_status_count') { Status.local.count } + @domain_count = Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) } end def terms; end |