Skip to content

Commit

Permalink
🐛 FIX: Fix hardcoded description for new teams
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Tainton <[email protected]>
  • Loading branch information
luketainton committed May 28, 2020
1 parent c383fb8 commit ead4d47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TeamsUserEnroller.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '2.1.1'
ModuleVersion = '2.1.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion TeamsUserEnroller.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Function Import-TeamsUsers {
} Elseif ($NewTeamPriv -Eq "r") {
$NewTeamVis = "Private"
}
$NewTeam = New-Team -DisplayName $NewTeamName -MailNickName $NewTeamName -Description "Testing team creation from PowerShell" -Visibility $NewTeamVis
$NewTeam = New-Team -DisplayName $NewTeamName -MailNickName $NewTeamName -Description $NewTeamDesc -Visibility $NewTeamVis
$GroupId = $NewTeam.GroupId
} Else {
##### GET USER'S TEAMS #####
Expand Down

0 comments on commit ead4d47

Please sign in to comment.