Skip to content

Commit

Permalink
Update GetGroupSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
reshmee011 authored Oct 25, 2024
1 parent 8dd3d5f commit d78b30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Utilities/Microsoft365GroupsUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ internal static Microsoft365GroupSettingValueCollection GetGroupSettings(Cmdlet

internal static Microsoft365GroupSettingValueCollection GetGroupSettings(Cmdlet cmdlet, PnPConnection connection, string accessToken, string groupId)
{
var result = GraphHelper.Get<Microsoft365GroupSettingValueCollection>(cmdlet, connection, $"v1.0/groups/{groupId}/settings", accessToken, propertyNameCaseInsensitive: true);
var result = GraphHelper.Get<Microsoft365GroupSettingValueCollection>(cmdlet, connection, $"v1.0/groupSettings/{groupId}", accessToken, propertyNameCaseInsensitive: true);
return result;
}

Expand Down

0 comments on commit d78b30d

Please sign in to comment.