mastodon/app/controllers/home_controller.rb

10 lines
256 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-22 09:00:20 -06: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 09:00:20 -06:00
end