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

Function DeploymentSidebar

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

Source from the content-addressed store, hash-verified

7 * A sidebar for deployment settings.
8 */
9export const DeploymentSidebar: FC = () => {
10 const { permissions } = useAuthenticated();
11 const { entitlements, showOrganizations, experiments, buildInfo } =
12 useDashboard();
13 const hasPremiumLicense =
14 entitlements.features.multiple_organizations.enabled;
15
16 return (
17 <DeploymentSidebarView
18 permissions={permissions}
19 showOrganizations={showOrganizations}
20 hasPremiumLicense={hasPremiumLicense}
21 experiments={experiments}
22 buildInfo={buildInfo}
23 />
24 );
25};

Callers

nothing calls this directly

Calls 2

useAuthenticatedFunction · 0.90
useDashboardFunction · 0.90

Tested by

no test coverage detected