about summary refs log blame commit diff
path: root/app/controllers/about_controller.rb
blob: 7df58444f1a78b9ffcccb8ea8b08ec1a704296f0 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
                                             
                                 
           

           



                      

                                
# frozen_string_literal: true

class AboutController < ApplicationController
  before_action :set_body_classes

  def index
  end

  def terms
  end

  private

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