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
303 B
Ruby
13 lines
303 B
Ruby
Fizzy::Saas::Engine.routes.draw do
|
|
resource :signup, only: %i[ new create ] do
|
|
scope module: :signups, as: :signup do
|
|
collection do
|
|
resource :membership, only: %i[ new create ]
|
|
resource :completion, only: %i[ new create ]
|
|
end
|
|
end
|
|
end
|
|
|
|
Queenbee.routes(self)
|
|
end
|