2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-28 06:12:33 +09:00
|
|
|
class AboutController < ApplicationController
|
2016-11-02 02:03:51 +09:00
|
|
|
before_action :set_body_classes
|
|
|
|
|
2016-09-28 06:12:33 +09:00
|
|
|
def index
|
2017-01-13 04:46:24 +09:00
|
|
|
@description = Setting.site_description
|
2016-11-02 02:03:51 +09:00
|
|
|
end
|
|
|
|
|
2017-01-13 04:46:24 +09:00
|
|
|
def terms; end
|
2016-11-02 02:03:51 +09:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_body_classes
|
2016-09-28 06:12:33 +09:00
|
|
|
@body_classes = 'about-body'
|
|
|
|
end
|
|
|
|
end
|