MCPcopy Index your code
hub / github.com/coder/coder / OrganizationSidebar

Function OrganizationSidebar

site/src/modules/management/OrganizationSidebar.tsx:10–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8 * Sidebar for the OrganizationSettingsLayout
9 */
10export const OrganizationSidebar: FC = () => {
11 const { permissions } = useAuthenticated();
12 const { organizations, organization, organizationPermissions } =
13 useOrganizationSettings();
14
15 return (
16 <BaseSidebar>
17 <OrganizationSidebarView
18 activeOrganization={organization}
19 orgPermissions={organizationPermissions}
20 organizations={organizations}
21 permissions={permissions}
22 />
23 </BaseSidebar>
24 );
25};

Callers

nothing calls this directly

Calls 2

useAuthenticatedFunction · 0.90
useOrganizationSettingsFunction · 0.90

Tested by

no test coverage detected