Skip to content

Commit

Permalink
Merge pull request #647 from ahazu/master
Browse files Browse the repository at this point in the history
Added import of "Group Types" and "Membership Rule" for AZGroups
  • Loading branch information
JonasBK committed May 1, 2023
2 parents 103d9ca + 48eddf0 commit e2bc162
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/SearchContainer/Tabs/AZGroupNodeData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ const AZGroupNodeData = () => {
displayname: 'Display Name',
whencreated: 'Creation Time',
securityenabled: 'Security Enabled',
groupTypes: 'Group Types',
membershipRule: 'Membership Rule',
};

return objectid === null ? (
Expand Down
3 changes: 3 additions & 0 deletions src/js/ingestion_types.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,11 @@
* @property {string} tenantId
* @property {string} id
* @property {string} tenantName
* @property {String} azureGroupTypes
* @property {String} azureMembershipRule
*/


/**
* @typedef {Object} AzureGroupMember
* @property {AzureDirectoryObject} member
Expand Down
2 changes: 2 additions & 0 deletions src/js/newingestion.js
Original file line number Diff line number Diff line change
Expand Up @@ -1404,6 +1404,8 @@ export function convertAzureGroup(data, ingestionData) {
securityidentifier: data.securityIdentifier,
name: `${data.displayName}@${data.tenantName}`.toUpperCase(),
tenantid: data.tenantId.toUpperCase(),
groupTypes: data.groupTypes,
membershipRule: data.membershipRule,
},
},
false
Expand Down

0 comments on commit e2bc162

Please sign in to comment.