mastodon/app/controllers/about_controller.rb

48 lines
849 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 17:12:33 -04:00
class AboutController < ApplicationController
2017-11-21 01:13:37 -05:00
before_action :set_pack
2019-03-12 12:34:00 -04:00
layout 'public'
2019-07-20 18:53:28 -04:00
before_action :set_body_classes, only: :show
before_action :set_instance_presenter
before_action :set_expires_in
2019-07-20 18:53:28 -04:00
skip_before_action :check_user_permissions, only: [:more, :terms]
2019-07-20 18:53:28 -04:00
def show; end
def more
flash.now[:notice] = I18n.t('about.instance_actor_flash') if params[:instance_actor]
end
2017-01-12 21:24:41 -05:00
2019-03-12 12:34:00 -04:00
def terms; end
private
def new_user
User.new.tap do |user|
user.build_account
user.build_invite_request
end
end
helper_method :new_user
2017-11-21 01:13:37 -05:00
def set_pack
use_pack 'common'
2017-11-21 01:13:37 -05:00
end
def set_instance_presenter
@instance_presenter = InstancePresenter.new
end
2019-07-20 18:53:28 -04:00
def set_body_classes
@hide_navbar = true
end
def set_expires_in
expires_in 0, public: true
end
2016-09-27 17:12:33 -04:00
end