Skip to content

Commit 000b526

Browse files
Allow to pass Group parameter to Remove-PnPGroupMember from pipeline (#3955)
Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com>
1 parent d576b53 commit 000b526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Principals/RemoveGroupMember.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class RemoveUserFromGroup : PnPWebCmdlet
1515
[Parameter(Mandatory = true)]
1616
public string LoginName = string.Empty;
1717

18-
[Parameter(Mandatory = true)]
18+
[Parameter(Mandatory = true, ValueFromPipeline = true)]
1919
[Alias("Identity")]
2020
public GroupPipeBind Group;
2121

0 commit comments

Comments
 (0)