Files
fizzy/app/controllers/public/collections_controller.rb
T
2025-09-28 18:33:06 +02:00

15 lines
384 B
Ruby

class Public::CollectionsController < ApplicationController
include PublicCollectionScoped
allow_unauthenticated_access only: :show
layout "public"
def show
set_page_and_extract_portion_from @collection.cards.awaiting_triage.reverse_chronologically
# To enable caching at intermediate proxies during traffic spikes
expires_in 5.seconds, public: true
end
end