mastodon/app/controllers/about_controller.rb

12 lines
230 B
Ruby
Raw Normal View History

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