Files
fizzy/app/controllers/public/collections/columns/not_nows_controller.rb
T
Stanko Krtalić 98755844a1 Remove the internal API
* Bind sessions to identities
* Remove references to the identity token
* Move email changes to identity
* Move account menu into a turbo-frame
* Create tenants from a tenanted route
2025-10-31 16:26:08 +01:00

13 lines
360 B
Ruby

class Public::Collections::Columns::NotNowsController < ApplicationController
include CachedPublicly, PublicCollectionScoped
allow_unauthenticated_access only: :show
allow_unauthorized_access only: :show
layout "public"
def show
set_page_and_extract_portion_from @collection.cards.postponed.reverse_chronologically.with_golden_first
end
end