File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
140
140
141
141
### Contributors
142
142
143
+ - [ abwlodar]
143
144
- [ jgfgoncalves]
144
145
- Stephen Cox [ stephen-cox-nzx]
145
146
- Marijn Somers [ Marijnsomers]
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Set-PnPTeamsTeam -Identity <TeamsTeamPipeBind> [-DisplayName <String>] [-Descrip
27
27
[-AllowGiphy <Boolean>] [-AllowGuestCreateUpdateChannels <Boolean>] [-AllowGuestDeleteChannels <Boolean>]
28
28
[-AllowOwnerDeleteMessages <Boolean>] [-AllowStickersAndMemes <Boolean>] [-AllowTeamMentions <Boolean>]
29
29
[-AllowUserDeleteMessages <Boolean>] [-AllowUserEditMessages <Boolean>]
30
- [-GiphyContentRating <TeamGiphyContentRating>] [-ShowInTeamsSearchAndSuggestions <Boolean>]
30
+ [-GiphyContentRating <TeamGiphyContentRating>] [-ShowInTeamsSearchAndSuggestions <Boolean>] [-AllowCreatePrivateChannels <Boolean>]
31
31
[-Classification <String>]
32
32
```
33
33
@@ -277,6 +277,20 @@ Accept pipeline input: False
277
277
Accept wildcard characters : False
278
278
` ` `
279
279
280
+ ### -AllowCreatePrivateChannels
281
+ Determines whether private channel creation is allowed for the team.
282
+
283
+ ` ` ` yaml
284
+ Type : Boolean
285
+ Parameter Sets : (All)
286
+
287
+ Required : False
288
+ Position : Named
289
+ Default value : None
290
+ Accept pipeline input : False
291
+ Accept wildcard characters : False
292
+ ` ` `
293
+
280
294
### -Classification
281
295
282
296
` ` ` yaml
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public class SetTeamsTeam : PnPGraphCmdlet
71
71
public bool ? AllowUserEditMessages ;
72
72
73
73
[ Parameter ( Mandatory = false , ParameterSetName = ParameterAttribute . AllParameterSets ) ]
74
- public Model . Teams . TeamGiphyContentRating GiphyContentRating ;
74
+ public TeamGiphyContentRating GiphyContentRating ;
75
75
76
76
[ Parameter ( Mandatory = false , ParameterSetName = ParameterAttribute . AllParameterSets ) ]
77
77
public bool ? ShowInTeamsSearchAndSuggestions ;
@@ -81,6 +81,7 @@ public class SetTeamsTeam : PnPGraphCmdlet
81
81
82
82
[ Parameter ( Mandatory = false , ParameterSetName = ParameterAttribute . AllParameterSets ) ]
83
83
public bool ? AllowCreatePrivateChannels ;
84
+
84
85
protected override void ExecuteCmdlet ( )
85
86
{
86
87
var groupId = Identity . GetGroupId ( GraphRequestHelper ) ;
You can’t perform that action at this time.
0 commit comments