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

28 lines
477 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
before_action :set_instance_presenter, only: [:show, :more, :terms]
def show; end
def more; end
2017-01-12 18:24:41 -08:00
def terms; end
private
def new_user
User.new.tap(&:build_account)
end
helper_method :new_user
def set_instance_presenter
@instance_presenter = InstancePresenter.new
end
def set_body_classes
2016-09-27 14:12:33 -07:00
@body_classes = 'about-body'
end
end