Public/Deploying/Test-EdenServiceSecurityStaging.ps1
function Test-EdenServiceSecurityStaging { <# .SYNOPSIS Testing features in staging. .DESCRIPTION Testing features in staging. by calling the local './Eden/Deploying/Test-ServiceSecurityStaging.ps1' script. #> [CmdletBinding()] param( # The name of the local or global settins file to pass to the Eden script. [Alias("sn")] [String] $SettingsName, # The additional arguments to pass to the Eden script. [Alias("aa")] [HashTable] $AdditionalArguments ) Invoke-EdenCommandStandardFlow ` -LocalCommandPath "Deploying/Test-ServiceSecurityStaging" ` -SettingsName $SettingsName ` -CommandGroup "Deploying" ` -Message "Testing security in staging." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-dpt ` -Value Test-EdenServiceSecurityStaging ` -Force |