0
0
Fork 0

Fix follow icon changing plus to minus, add terms page stub

This commit is contained in:
Eugen Rochko 2016-11-01 18:03:51 +01:00
parent 57304ac375
commit dd03118098
6 changed files with 122 additions and 2 deletions

View file

@ -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