mastodon/app/controllers/about_controller.rb

33 lines
1022 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 23:12:33 +02:00
class AboutController < ApplicationController
before_action :set_body_classes
2016-09-27 23:12:33 +02:00
def index
@description = Setting.site_description
@open_registrations = Setting.open_registrations
@closed_registrations_message = Setting.closed_registrations_message
@user = User.new
@user.build_account
end
2017-01-13 03:24:41 +01:00
def more
@description = Setting.site_description
2017-01-13 03:24:41 +01:00
@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) }
2017-01-13 03:24:41 +01:00
end
def terms; end
private
def set_body_classes
2016-09-27 23:12:33 +02:00
@body_classes = 'about-body'
end
end