1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-05 14:33:05 -05:00

10 lines
256 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-22 16:00:20 +01:00
class HomeController < ApplicationController
include WebAppControllerConcern
def index
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.day) unless user_signed_in?
end
2016-02-22 16:00:20 +01:00
end