Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSTeams
0.2.0
Private/Add-TeamsSection.ps1
function
Add-TeamsSection
{
param
(
$Sections
)
$PreparedSections
=
@(
)
foreach
(
$section
in
$Sections
)
{
$PreparedSections
+=
$section
}
return
$PreparedSections
}