Skip to content

feat: show organization name for groups on user profile #14448

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Aug 29, 2024
Prev Previous commit
fix id
  • Loading branch information
aslilac committed Aug 28, 2024
commit 5422157421e32886cc9e87d98e974744d29e2741
4 changes: 3 additions & 1 deletion site/src/testHelpers/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2506,7 +2506,9 @@ export const MockGroup: TypesGen.Group = {
};

const MockEveryoneGroup: TypesGen.Group = {
id: `${MockOrganization.id}-everyone`,
// The "Everyone" group must have the same ID as a the organization it belongs
// to.
id: MockOrganization.id,
name: "Everyone",
display_name: "",
organization_id: MockOrganization.id,
Expand Down
Loading