Files
fizzy/app/controllers/boards/columns/not_nows_controller.rb
T
2025-11-05 13:41:12 +01:00

9 lines
247 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
fresh_when etag: @page.records
end
end