We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d27fd0 commit 98ec939Copy full SHA for 98ec939
Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecTenantGroup.ps1
@@ -35,7 +35,7 @@ function Invoke-ExecTenantGroup {
35
if ($groupDescription) {
36
$GroupEntity.Description = $groupDescription
37
}
38
- $GroupEntity.GroupType = $groupType
+ $GroupEntity | Add-Member -NotePropertyName 'GroupType' -NotePropertyValue $groupType -Force
39
if ($groupType -eq 'dynamic' -and $dynamicRules) {
40
$GroupEntity.DynamicRules = "$($dynamicRules | ConvertTo-Json -depth 100 -Compress)"
41
$GroupEntity | Add-Member -NotePropertyName 'RuleLogic' -NotePropertyValue $ruleLogic -Force
0 commit comments