mastodon/app/controllers/about_controller.rb

12 lines
230 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 21:12:33 +00:00
class AboutController < ApplicationController
include WebAppControllerConcern
skip_before_action :require_functional!
2019-03-12 16:34:00 +00:00
def show
expires_in 0, public: true unless user_signed_in?
end
2016-09-27 21:12:33 +00:00
end