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
12 lines
222 B
Ruby
12 lines
222 B
Ruby
class Public::CardsController < ApplicationController
|
|
include CachedPublicly, PublicCardScoped
|
|
|
|
allow_unauthenticated_access only: :show
|
|
allow_unauthorized_access only: :show
|
|
|
|
layout "public"
|
|
|
|
def show
|
|
end
|
|
end
|