From 8c1070fcac7b15ee0390cee2e7fd7878c01b464b Mon Sep 17 00:00:00 2001 From: Bluzzi Date: Tue, 17 Oct 2023 10:47:06 +0200 Subject: [PATCH] update(Open-Pelico): add Shoebill URL --- Core/Commands/Open-Pelico/Open-Pelico.Cmd.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Core/Commands/Open-Pelico/Open-Pelico.Cmd.ps1 b/Core/Commands/Open-Pelico/Open-Pelico.Cmd.ps1 index 6b956a3..9c01f20 100644 --- a/Core/Commands/Open-Pelico/Open-Pelico.Cmd.ps1 +++ b/Core/Commands/Open-Pelico/Open-Pelico.Cmd.ps1 @@ -2,6 +2,7 @@ enum PelicoWebsite { App Ibis Flamingo + Shoebill } function Open-Pelico { @@ -23,6 +24,10 @@ function Open-Pelico { $URL = "$env:PELICO_URL/flamingo/api/graphql" } + ([PelicoWebsite]::Shoebill) { + $URL = "$env:PELICO_URL/shoebill/api/graphql/graphql" + } + Default { Write-Host "Website does not exist." return