diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/about_controller.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/controllers/about_controller.rb b/app/controllers/about_controller.rb index aac648d62..4e423e91f 100644 --- a/app/controllers/about_controller.rb +++ b/app/controllers/about_controller.rb @@ -1,5 +1,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 |