about summary refs log tree commit diff
path: root/app/controllers/about_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-01 18:03:51 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-01 18:05:55 +0100
commitdd03118098d342398f91b56bd2f27d370bc5b661 (patch)
treef71f271940d889805636eaa0363df5fa7372670c /app/controllers/about_controller.rb
parent57304ac375e905fb0efa1b98a6100828bdbef2e1 (diff)
Fix follow icon changing plus to minus, add terms page stub
Diffstat (limited to 'app/controllers/about_controller.rb')
-rw-r--r--app/controllers/about_controller.rb11
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