1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/app/controllers/about_controller.rb

17 lines
215 B
Ruby

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