Files
fizzy/app/controllers/collections/columns/not_nows_controller.rb
T
2025-09-29 15:09:38 +02:00

9 lines
261 B
Ruby

class Collections::Columns::NotNowsController < ApplicationController
include CollectionScoped
def show
set_page_and_extract_portion_from @collection.cards.postponed.reverse_chronologically
fresh_when etag: [ @collection, @page.records ]
end
end