1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/controllers/about_controller.rb

18 lines
227 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 14:12:33 -07:00
class AboutController < ApplicationController
before_action :set_body_classes
2016-09-27 14:12:33 -07:00
def index
end
def terms
end
private
def set_body_classes
2016-09-27 14:12:33 -07:00
@body_classes = 'about-body'
end
end