Public/Documentation/Show-EdenServiceDocsChat.ps1
function Show-EdenServiceDocsChat { <# .SYNOPSIS Showing service chat docs. .DESCRIPTION Showing service chat docs. by calling the local './Eden/Documentation/Show-ServiceDocsChat.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 "Documentation/Show-ServiceDocsChat" ` -SettingsName $SettingsName ` -CommandGroup "Documentation" ` -Message "Showing service chat docs." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-docsc ` -Value Show-EdenServiceDocsChat ` -Force |