1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: list users and groups under each role in projectaccessadded event (#5581)

## About the changes

Changes the project access added event to list all users and groups
added to each role instead of in root event.
This commit is contained in:
David Leek 2023-12-19 10:16:17 +01:00 committed by GitHub
parent 7800d9d1b4
commit 5603e8683d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 11 deletions

View File

@ -121,11 +121,13 @@ test('should anonymise any PII fields, no matter the depth', async () => {
createdBy: 'some@email.com',
createdByUserId: TEST_USER_ID,
data: {
groups: [
roles: [
{
name: 'test',
project: 'default',
users: [{ username: testUsername }],
roleId: 1,
groupIds: [1, 2],
// Doesn't reflect the real data structure for event here, normally a number array.
// Testing PII anonymisation
users: [{ id: 1, username: testUsername }],
},
],
},
@ -138,7 +140,7 @@ test('should anonymise any PII fields, no matter the depth', async () => {
.expect(200);
expect(body.events.length).toBe(1);
expect(body.events[0].data.groups[0].users[0].username).not.toBe(
expect(body.events[0].data.roles[0].users[0].username).not.toBe(
testUsername,
);
});

View File

@ -681,9 +681,11 @@ export default class ProjectService {
createdBy,
createdByUserId,
data: {
roleId,
groups: usersAndGroups.groups.map(({ id }) => id),
users: usersAndGroups.users.map(({ id }) => id),
roles: {
roleId,
groupIds: usersAndGroups.groups.map(({ id }) => id),
userIds: usersAndGroups.users.map(({ id }) => id),
},
},
}),
);
@ -711,9 +713,13 @@ export default class ProjectService {
createdBy,
createdByUserId,
data: {
roles,
groups,
users,
roles: roles.map((roleId) => {
return {
roleId,
groupIds: groups,
userIds: users,
};
}),
},
}),
);