Files
fizzy/gems/fizzy-saas/config/routes.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
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