98755844a1
* 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
13 lines
337 B
Ruby
13 lines
337 B
Ruby
class Public::Collections::Columns::ClosedsController < 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.closed.recently_closed_first
|
|
end
|
|
end
|