Skip to content

Commit 5b26dbb

Browse files
committed
Identification for partner or dev dash orgs
Co-authored-by: Zoey Lan <[email protected]>
1 parent b5863b9 commit 5b26dbb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: packages/app/src/cli/utilities/developer-platform-client/app-management-client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
331331
if (!organizationsResult.currentUserAccount) return []
332332
return organizationsResult.currentUserAccount.organizations.nodes.map((org) => ({
333333
id: idFromEncodedGid(org.id),
334-
businessName: org.name,
334+
businessName: org.name + ' (Dev Dashboard)',
335335
source: this.organizationSource,
336336
}))
337337
}

Diff for: packages/app/src/cli/utilities/developer-platform-client/partners-client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export class PartnersClient implements DeveloperPlatformClient {
293293
const result = await this.requestDoc(AllOrgs)
294294
return result.organizations.nodes!.map((org) => ({
295295
id: org!.id,
296-
businessName: org!.businessName,
296+
businessName: org!.businessName + ' (Partners)',
297297
source: this.organizationSource,
298298
}))
299299
} catch (error: unknown) {

0 commit comments

Comments
 (0)