From dd03118098d342398f91b56bd2f27d370bc5b661 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 1 Nov 2016 18:03:51 +0100 Subject: Fix follow icon changing plus to minus, add terms page stub --- app/controllers/about_controller.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'app/controllers') 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 -- cgit