Files
fizzy/app/controllers/boards/columns/not_nows_controller.rb
T
2025-11-17 16:16:19 +01:00

9 lines
257 B
Ruby

class Boards::Columns::NotNowsController < ApplicationController
include BoardScoped
def show
set_page_and_extract_portion_from @board.cards.postponed.reverse_chronologically.with_golden_first.preloaded
fresh_when etag: @page.records
end
end