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

Function createOrganizationWithName

site/e2e/api.ts:108–116  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

106};
107
108export const createOrganizationWithName = async (name: string) => {
109 const org = await API.createOrganization({
110 name,
111 display_name: `${name}`,
112 description: `Org description ${name}`,
113 icon: "/emojis/1f957.png",
114 });
115 return org;
116};
117
118export const createOrganizationSyncSettings = async () => {
119 const settings = await API.patchOrganizationIdpSyncSettings({

Callers 4

idpOrgSync.spec.tsFile · 0.90

Calls 1

createOrganizationMethod · 0.80

Tested by

no test coverage detected