about summary refs log tree commit diff
path: root/app/controllers/about_controller.rb
blob: 4e423e91f2ae6118692914bb488d733f36bced9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class AboutController < ApplicationController
  before_action :set_body_classes

  def index
  end

  def terms
    @state = 'TBD'
  end

  private

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