1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-31 12:03:10 -05:00

12 lines
299 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 23:12:33 +02:00
class AboutController < ApplicationController
include WebAppControllerConcern
skip_before_action :require_functional!
2019-03-12 17:34:00 +01:00
def show
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.day) unless user_signed_in?
end
2016-09-27 23:12:33 +02:00
end