mastodon/app/controllers/about_controller.rb

20 lines
366 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 16:12:33 -05:00
class AboutController < ApplicationController
include WebAppControllerConcern
skip_before_action :require_functional!
2019-03-12 11:34:00 -05:00
before_action :set_instance_presenter
def show
expires_in 0, public: true unless user_signed_in?
end
private
def set_instance_presenter
@instance_presenter = InstancePresenter.new
end
2016-09-27 16:12:33 -05:00
end