mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-09 20:50:58 +00:00
feat(tenancy): implement workspace isolation
This commit is contained in:
@@ -26,6 +26,8 @@ import ErrorPage from '@/components/ErrorPage';
|
||||
import BackendUnavailablePage from '@/components/BackendUnavailablePage';
|
||||
import PluginPagesPage from '@/app/home/plugin-pages/page';
|
||||
import RootLayout from '@/app/RootLayout';
|
||||
import AcceptInvitationPage from '@/app/invitations/accept/page';
|
||||
import WorkspaceSelectPage from '@/app/workspaces/select/page';
|
||||
|
||||
const Loading = () => <div>Loading...</div>;
|
||||
|
||||
@@ -62,6 +64,14 @@ export const router = createBrowserRouter([
|
||||
</ResetPasswordLayout>
|
||||
),
|
||||
},
|
||||
{
|
||||
path: '/invitations/accept',
|
||||
element: <AcceptInvitationPage />,
|
||||
},
|
||||
{
|
||||
path: '/workspaces/select',
|
||||
element: <WorkspaceSelectPage />,
|
||||
},
|
||||
{
|
||||
path: '/wizard',
|
||||
element: <WizardPage />,
|
||||
|
||||
Reference in New Issue
Block a user