Adding about/more page with extended information that can be set up by an admin
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user