Skip to content

feat: create and modify organization groups #13887

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jul 22, 2024
Prev Previous commit
Next Next commit
Merge branch 'main' into org-groups
  • Loading branch information
aslilac committed Jul 17, 2024
commit 504f5616c3e8ebb935035be59ed0d0b8331469d7
16 changes: 4 additions & 12 deletions site/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,9 @@ const OrganizationGroupPage = lazy(
const OrganizationGroupSettingsPage = lazy(
() => import("./pages/ManagementSettingsPage/GroupsPage/SettingsGroupPage"),
);
const OrganizationMembersPage = lazy(
() => import("./pages/ManagementSettingsPage/OrganizationMembersPage"),
);
const OrganizationSettingsPlaceholder = lazy(
() =>
import("./pages/ManagementSettingsPage/OrganizationSettingsPlaceholder"),
Expand Down Expand Up @@ -356,14 +359,7 @@ export const router = createBrowserRouter(

<Route path=":organization">
<Route index element={<OrganizationSettingsPage />} />
<Route
path="external-auth"
element={<OrganizationSettingsPlaceholder />}
/>
<Route
path="members"
element={<OrganizationSettingsPlaceholder />}
/>
<Route path="members" element={<OrganizationMembersPage />} />
<Route path="groups">
<Route index element={<OrganizationGroupsPage />} />

Expand All @@ -377,10 +373,6 @@ export const router = createBrowserRouter(
element={<OrganizationGroupSettingsPage />}
/>
</Route>
<Route
path="metrics"
element={<OrganizationSettingsPlaceholder />}
/>
<Route
path="auditing"
element={<OrganizationSettingsPlaceholder />}
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.