PSMatrix/private/New-MatrixUrl.ps1

11 lines
209 B
PowerShell
Raw Normal View History

function New-MatrixUrl {
param(
[Parameter(Mandatory)]
[string]$ServerUrl,
[Parameter(Mandatory)]
[string]$ApiPath
)
2022-03-27 14:33:05 +00:00
return $ServerUrl.Trim("/") + "/" + $ApiPath
}