about summary refs log tree commit diff
path: root/app/controllers/about_controller.rb
blob: b69c8e790fef6757d0306dc6e2d5e981ee2ee857 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

class AboutController < ApplicationController
  before_action :set_body_classes

  def index
    @description = Setting.site_description
  end

  def more
    @extended_description = Setting.site_extended_description
    @contact_account      = Account.find_local(Setting.site_contact_username)
    @contact_email        = Setting.site_contact_email
  end

  def terms; end

  private

  def set_body_classes
    @body_classes = 'about-body'
  end
end