Skip to content

Commit 42273aa

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

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
@@ -339,7 +339,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
339339
if (!organizationsResult.currentUserAccount) return []
340340
return organizationsResult.currentUserAccount.organizations.nodes.map((org) => ({
341341
id: idFromEncodedGid(org.id),
342-
businessName: org.name,
342+
businessName: `${org.name} (Dev Dashboard)`,
343343
source: this.organizationSource,
344344
}))
345345
}

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} (Partner Dashboard)`,
297297
source: this.organizationSource,
298298
}))
299299
} catch (error: unknown) {

0 commit comments

Comments
 (0)