mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-09 23:49:47 +02:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 35787026c7 | |||
| 09d5d9082e | |||
| 5cb316f4e9 | |||
| 6b6c9cf4d8 | |||
| 05617c63c0 | |||
| d4c52bbf2f | |||
| 87f50bf0cc | |||
| 2c66da1b19 | |||
| ab19955502 | |||
| 1db9dcec81 | |||
| 49c2d3163e | |||
| 45b9e13a13 |
@@ -41,7 +41,7 @@ services:
|
|||||||
- 80:80 # Port for traefik because of the network_mode
|
- 80:80 # Port for traefik because of the network_mode
|
||||||
|
|
||||||
traefik:
|
traefik:
|
||||||
image: traefik:v3.6
|
image: traefik:v3.7
|
||||||
container_name: traefik
|
container_name: traefik
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
network_mode: service:gerbil # Ports appear on the gerbil service
|
network_mode: service:gerbil # Ports appear on the gerbil service
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ services:
|
|||||||
- 80:80{{end}}
|
- 80:80{{end}}
|
||||||
|
|
||||||
traefik:
|
traefik:
|
||||||
image: docker.io/traefik:v3.6
|
image: docker.io/traefik:v3.7
|
||||||
container_name: traefik
|
container_name: traefik
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
{{if .InstallGerbil}}network_mode: service:gerbil # Ports appear on the gerbil service{{end}}{{if not .InstallGerbil}}
|
{{if .InstallGerbil}}network_mode: service:gerbil # Ports appear on the gerbil service{{end}}{{if not .InstallGerbil}}
|
||||||
|
|||||||
+2
-2
@@ -5,7 +5,7 @@ go 1.25.0
|
|||||||
require (
|
require (
|
||||||
github.com/charmbracelet/huh v1.0.0
|
github.com/charmbracelet/huh v1.0.0
|
||||||
github.com/charmbracelet/lipgloss v1.1.0
|
github.com/charmbracelet/lipgloss v1.1.0
|
||||||
golang.org/x/term v0.44.0
|
golang.org/x/term v0.45.0
|
||||||
gopkg.in/yaml.v3 v3.0.1
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -33,6 +33,6 @@ require (
|
|||||||
github.com/rivo/uniseg v0.4.7 // indirect
|
github.com/rivo/uniseg v0.4.7 // indirect
|
||||||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
||||||
golang.org/x/sync v0.15.0 // indirect
|
golang.org/x/sync v0.15.0 // indirect
|
||||||
golang.org/x/sys v0.46.0 // indirect
|
golang.org/x/sys v0.47.0 // indirect
|
||||||
golang.org/x/text v0.23.0 // indirect
|
golang.org/x/text v0.23.0 // indirect
|
||||||
)
|
)
|
||||||
|
|||||||
+4
-4
@@ -69,10 +69,10 @@ golang.org/x/sync v0.15.0 h1:KWH3jNZsfyT6xfAfKiz6MRNmd46ByHDYaZ7KSkCtdW8=
|
|||||||
golang.org/x/sync v0.15.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
|
golang.org/x/sync v0.15.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
|
||||||
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.46.0 h1:noSf2Fq6F8DBgS+LysIkx7rIExoNHJsxOAtPp4rthXw=
|
golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
|
||||||
golang.org/x/sys v0.46.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
||||||
golang.org/x/term v0.44.0 h1:0rLvDRCtNj0gZkyIXhCyOb2OAzEhLVqc4B+hrsBhrmc=
|
golang.org/x/term v0.45.0 h1:NwWyBmoJCbfTHpxrWoZ9C6/VxOf7ic219I8xZZFdrf0=
|
||||||
golang.org/x/term v0.44.0/go.mod h1:7ze4MdzUzLXpSAoFP1H0bOI9aXDqveSvatT5vKcFh2Y=
|
golang.org/x/term v0.45.0/go.mod h1:9aqxs0blBcrm/n0L9QW0aRVD+ktan8ssZromtqJC43w=
|
||||||
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
|
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
|
||||||
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
|
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Създаване на Организационна Потребител",
|
"createOrgUser": "Създаване на Организационна Потребител",
|
||||||
"actionUpdateOrg": "Актуализиране на организацията",
|
"actionUpdateOrg": "Актуализиране на организацията",
|
||||||
"actionRemoveInvitation": "Премахване на поканата.",
|
"actionRemoveInvitation": "Премахване на поканата.",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Актуализиране на потребител",
|
"actionUpdateUser": "Актуализиране на потребител",
|
||||||
"actionGetUser": "Получаване на потребител",
|
"actionGetUser": "Получаване на потребител",
|
||||||
"actionGetOrgUser": "Вземете потребител на организация",
|
"actionGetOrgUser": "Вземете потребител на организация",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Генериране на токен за достъп",
|
"actionGenerateAccessToken": "Генериране на токен за достъп",
|
||||||
"actionDeleteAccessToken": "Изтриване на токен за достъп",
|
"actionDeleteAccessToken": "Изтриване на токен за достъп",
|
||||||
"actionListAccessTokens": "Изброяване на токени за достъп",
|
"actionListAccessTokens": "Изброяване на токени за достъп",
|
||||||
"actionCreateResourceSessionToken": "Създаване на токен за сесия на ресурс",
|
|
||||||
"actionCreateResourceRule": "Създаване на правило за ресурс",
|
"actionCreateResourceRule": "Създаване на правило за ресурс",
|
||||||
"actionDeleteResourceRule": "Изтрийте правило за ресурс",
|
"actionDeleteResourceRule": "Изтрийте правило за ресурс",
|
||||||
"actionListResourceRules": "Изброяване на правила за ресурс",
|
"actionListResourceRules": "Изброяване на правила за ресурс",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Затвори",
|
"createInternalResourceDialogClose": "Затвори",
|
||||||
"createInternalResourceDialogCreateClientResource": "Създаване на частен ресурс",
|
"createInternalResourceDialogCreateClientResource": "Създаване на частен ресурс",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Създайте нов ресурс, който ще бъде достъпен само за клиенти, свързани към организацията",
|
"createInternalResourceDialogCreateClientResourceDescription": "Създайте нов ресурс, който ще бъде достъпен само за клиенти, свързани към организацията",
|
||||||
"privateResourceGeneralDescription": "Конфигурирайте името, идентификатора и другите общи настройки на ресурса.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Вижте всички частни ресурси",
|
"privateResourceCreatePageSeeAll": "Вижте всички частни ресурси",
|
||||||
"privateResourceAllowIcmpPing": "Разрешете ICMP Ping",
|
"privateResourceAllowIcmpPing": "Разрешете ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "Достъп до мрежата",
|
"privateResourceNetworkAccess": "Достъп до мрежата",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Добавяне на потребители.",
|
"editInternalResourceDialogAddUsers": "Добавяне на потребители.",
|
||||||
"editInternalResourceDialogAddClients": "Добавяне на клиенти.",
|
"editInternalResourceDialogAddClients": "Добавяне на клиенти.",
|
||||||
"editInternalResourceDialogDestinationLabel": "Дестинация.",
|
"editInternalResourceDialogDestinationLabel": "Дестинация.",
|
||||||
"editInternalResourceDialogDestinationDescription": "Конфигурирайте как клиентите да достигнат до този ресурс.",
|
"editInternalResourceDialogDestinationDescription": "Изберете къде работи този ресурс и как клиентите го достигат",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Избирайки няколко сайта, се осигурява сигурен път и пренасочване при висока достъпност.",
|
"internalResourceFormMultiSiteRoutingHelp": "Избирайки няколко сайта, се осигурява сигурен път и пренасочване при висока достъпност.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Научете повече",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Научете повече",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Ограничете достъпа до конкретни TCP/UDP портове или позволете/блокирайте всички портове.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Ограничете достъпа до конкретни TCP/UDP портове или позволете/блокирайте всички портове.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Vytvořit Org uživatele",
|
"createOrgUser": "Vytvořit Org uživatele",
|
||||||
"actionUpdateOrg": "Aktualizovat organizaci",
|
"actionUpdateOrg": "Aktualizovat organizaci",
|
||||||
"actionRemoveInvitation": "Odstranit pozvání",
|
"actionRemoveInvitation": "Odstranit pozvání",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Aktualizovat uživatele",
|
"actionUpdateUser": "Aktualizovat uživatele",
|
||||||
"actionGetUser": "Získat uživatele",
|
"actionGetUser": "Získat uživatele",
|
||||||
"actionGetOrgUser": "Získat uživatele organizace",
|
"actionGetOrgUser": "Získat uživatele organizace",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Generovat přístupový token",
|
"actionGenerateAccessToken": "Generovat přístupový token",
|
||||||
"actionDeleteAccessToken": "Odstranit přístupový token",
|
"actionDeleteAccessToken": "Odstranit přístupový token",
|
||||||
"actionListAccessTokens": "Seznam přístupových tokenů",
|
"actionListAccessTokens": "Seznam přístupových tokenů",
|
||||||
"actionCreateResourceSessionToken": "Vytvořit token relace prostředku",
|
|
||||||
"actionCreateResourceRule": "Vytvořit pravidlo pro zdroj",
|
"actionCreateResourceRule": "Vytvořit pravidlo pro zdroj",
|
||||||
"actionDeleteResourceRule": "Odstranit pravidlo pro dokument",
|
"actionDeleteResourceRule": "Odstranit pravidlo pro dokument",
|
||||||
"actionListResourceRules": "Seznam pravidel zdrojů",
|
"actionListResourceRules": "Seznam pravidel zdrojů",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Zavřít",
|
"createInternalResourceDialogClose": "Zavřít",
|
||||||
"createInternalResourceDialogCreateClientResource": "Vytvořit soukromý zdroj",
|
"createInternalResourceDialogCreateClientResource": "Vytvořit soukromý zdroj",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Vytvořte nový zdroj, který bude přístupný pouze klientům připojeným k organizaci",
|
"createInternalResourceDialogCreateClientResourceDescription": "Vytvořte nový zdroj, který bude přístupný pouze klientům připojeným k organizaci",
|
||||||
"privateResourceGeneralDescription": "Nastavte název, identifikátor a další obecná nastavení zdroje.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Zobrazit všechny privátní zdroje",
|
"privateResourceCreatePageSeeAll": "Zobrazit všechny privátní zdroje",
|
||||||
"privateResourceAllowIcmpPing": "Povolit ICMP ping",
|
"privateResourceAllowIcmpPing": "Povolit ICMP ping",
|
||||||
"privateResourceNetworkAccess": "Přístup k síti",
|
"privateResourceNetworkAccess": "Přístup k síti",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Přidat uživatele",
|
"editInternalResourceDialogAddUsers": "Přidat uživatele",
|
||||||
"editInternalResourceDialogAddClients": "Přidat klienty",
|
"editInternalResourceDialogAddClients": "Přidat klienty",
|
||||||
"editInternalResourceDialogDestinationLabel": "Cíl",
|
"editInternalResourceDialogDestinationLabel": "Cíl",
|
||||||
"editInternalResourceDialogDestinationDescription": "Nakonfigurujte, jak klienti dosáhnou tohoto zdroje.",
|
"editInternalResourceDialogDestinationDescription": "Vyberte, kde bude tento zdroj spuštěn a jak ho klienti dosáhnou",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Výběrem více webů se povolí odolné směrování a přepojení pro vysokou dostupnost.",
|
"internalResourceFormMultiSiteRoutingHelp": "Výběrem více webů se povolí odolné směrování a přepojení pro vysokou dostupnost.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Zjistit více",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Zjistit více",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Omezte přístup na specifické TCP/UDP porty nebo povolte/blokujte všechny porty.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Omezte přístup na specifické TCP/UDP porty nebo povolte/blokujte všechny porty.",
|
||||||
|
|||||||
+2
-5
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Opret organisationsbruger",
|
"createOrgUser": "Opret organisationsbruger",
|
||||||
"actionUpdateOrg": "Opdater organisation",
|
"actionUpdateOrg": "Opdater organisation",
|
||||||
"actionRemoveInvitation": "Fjern invitation",
|
"actionRemoveInvitation": "Fjern invitation",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Opdater bruger",
|
"actionUpdateUser": "Opdater bruger",
|
||||||
"actionGetUser": "Hent bruger",
|
"actionGetUser": "Hent bruger",
|
||||||
"actionGetOrgUser": "Hent organisationsbruger",
|
"actionGetOrgUser": "Hent organisationsbruger",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Generer adgangstoken",
|
"actionGenerateAccessToken": "Generer adgangstoken",
|
||||||
"actionDeleteAccessToken": "Slet adgangstoken",
|
"actionDeleteAccessToken": "Slet adgangstoken",
|
||||||
"actionListAccessTokens": "Vis adgangstokens",
|
"actionListAccessTokens": "Vis adgangstokens",
|
||||||
"actionCreateResourceSessionToken": "Opret ressourcessession token",
|
|
||||||
"actionCreateResourceRule": "Opret ressourceregel",
|
"actionCreateResourceRule": "Opret ressourceregel",
|
||||||
"actionDeleteResourceRule": "Slet ressourceregel",
|
"actionDeleteResourceRule": "Slet ressourceregel",
|
||||||
"actionListResourceRules": "Vis ressourceregler",
|
"actionListResourceRules": "Vis ressourceregler",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Luk",
|
"createInternalResourceDialogClose": "Luk",
|
||||||
"createInternalResourceDialogCreateClientResource": "Opret privat ressource",
|
"createInternalResourceDialogCreateClientResource": "Opret privat ressource",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Opret en ny ressource som kun vil være tilgængelig for kunder som er forbundet til organisationen",
|
"createInternalResourceDialogCreateClientResourceDescription": "Opret en ny ressource som kun vil være tilgængelig for kunder som er forbundet til organisationen",
|
||||||
"privateResourceGeneralDescription": "Konfigurer navnet, identifikatoren, og andre generelle indstillinger for ressourcen.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Se alle private ressourcer",
|
"privateResourceCreatePageSeeAll": "Se alle private ressourcer",
|
||||||
"privateResourceAllowIcmpPing": "Tillad ICMP-ping",
|
"privateResourceAllowIcmpPing": "Tillad ICMP-ping",
|
||||||
"privateResourceNetworkAccess": "Netværksadgang",
|
"privateResourceNetworkAccess": "Netværksadgang",
|
||||||
@@ -2549,7 +2546,7 @@
|
|||||||
"noRemoteExitNodesAvailableDescription": "Ingen noder er tilgængelige for denne organisation. Opret en node først for at bruge lokale sites.",
|
"noRemoteExitNodesAvailableDescription": "Ingen noder er tilgængelige for denne organisation. Opret en node først for at bruge lokale sites.",
|
||||||
"exitNode": "Exitnode",
|
"exitNode": "Exitnode",
|
||||||
"country": "Land",
|
"country": "Land",
|
||||||
"countryIsNot": "Land er ikke",
|
"countryIsNot": "Country Is Not",
|
||||||
"rulesMatchCountry": "I øjeblikket baseret på kilde-IP",
|
"rulesMatchCountry": "I øjeblikket baseret på kilde-IP",
|
||||||
"region": "Fylke",
|
"region": "Fylke",
|
||||||
"selectRegion": "Vælg region",
|
"selectRegion": "Vælg region",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Tilføj brugere",
|
"editInternalResourceDialogAddUsers": "Tilføj brugere",
|
||||||
"editInternalResourceDialogAddClients": "Tilføj klienter",
|
"editInternalResourceDialogAddClients": "Tilføj klienter",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destination",
|
"editInternalResourceDialogDestinationLabel": "Destination",
|
||||||
"editInternalResourceDialogDestinationDescription": "Konfigurer hvordan klienter får adgang til denne ressource.",
|
"editInternalResourceDialogDestinationDescription": "Choose where this resource runs and how clients reach it",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Valg af flere sites muliggør robust routing og failover for høj tilgængelighed.",
|
"internalResourceFormMultiSiteRoutingHelp": "Valg af flere sites muliggør robust routing og failover for høj tilgængelighed.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Læs mere",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Læs mere",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Begrens adgang til specifikke TCP/UDP-porte eller tillade/blokere alle porte.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Begrens adgang til specifikke TCP/UDP-porte eller tillade/blokere alle porte.",
|
||||||
|
|||||||
+2
-5
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Org Benutzer erstellen",
|
"createOrgUser": "Org Benutzer erstellen",
|
||||||
"actionUpdateOrg": "Organisation aktualisieren",
|
"actionUpdateOrg": "Organisation aktualisieren",
|
||||||
"actionRemoveInvitation": "Einladung entfernen",
|
"actionRemoveInvitation": "Einladung entfernen",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Benutzer aktualisieren",
|
"actionUpdateUser": "Benutzer aktualisieren",
|
||||||
"actionGetUser": "Benutzer abrufen",
|
"actionGetUser": "Benutzer abrufen",
|
||||||
"actionGetOrgUser": "Organisationsbenutzer abrufen",
|
"actionGetOrgUser": "Organisationsbenutzer abrufen",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Zugriffstoken generieren",
|
"actionGenerateAccessToken": "Zugriffstoken generieren",
|
||||||
"actionDeleteAccessToken": "Zugriffstoken löschen",
|
"actionDeleteAccessToken": "Zugriffstoken löschen",
|
||||||
"actionListAccessTokens": "Zugriffstoken auflisten",
|
"actionListAccessTokens": "Zugriffstoken auflisten",
|
||||||
"actionCreateResourceSessionToken": "Ressourcensitzungstoken erstellen",
|
|
||||||
"actionCreateResourceRule": "Ressourcenregel erstellen",
|
"actionCreateResourceRule": "Ressourcenregel erstellen",
|
||||||
"actionDeleteResourceRule": "Ressourcenregel löschen",
|
"actionDeleteResourceRule": "Ressourcenregel löschen",
|
||||||
"actionListResourceRules": "Ressourcenregeln auflisten",
|
"actionListResourceRules": "Ressourcenregeln auflisten",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Schließen",
|
"createInternalResourceDialogClose": "Schließen",
|
||||||
"createInternalResourceDialogCreateClientResource": "Private Ressource erstellen",
|
"createInternalResourceDialogCreateClientResource": "Private Ressource erstellen",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Erstelle eine neue Ressource, die nur für Clients zugänglich ist, die mit der Organisation verbunden sind",
|
"createInternalResourceDialogCreateClientResourceDescription": "Erstelle eine neue Ressource, die nur für Clients zugänglich ist, die mit der Organisation verbunden sind",
|
||||||
"privateResourceGeneralDescription": "Konfigurieren Sie den Namen, die Kennung und andere allgemeine Ressourceneinstellungen.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Alle privaten Ressourcen anzeigen",
|
"privateResourceCreatePageSeeAll": "Alle privaten Ressourcen anzeigen",
|
||||||
"privateResourceAllowIcmpPing": "ICMP-Ping zulassen",
|
"privateResourceAllowIcmpPing": "ICMP-Ping zulassen",
|
||||||
"privateResourceNetworkAccess": "Netzwerkzugriff",
|
"privateResourceNetworkAccess": "Netzwerkzugriff",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Nutzer hinzufügen",
|
"editInternalResourceDialogAddUsers": "Nutzer hinzufügen",
|
||||||
"editInternalResourceDialogAddClients": "Clients hinzufügen",
|
"editInternalResourceDialogAddClients": "Clients hinzufügen",
|
||||||
"editInternalResourceDialogDestinationLabel": "Ziel",
|
"editInternalResourceDialogDestinationLabel": "Ziel",
|
||||||
"editInternalResourceDialogDestinationDescription": "Konfigurieren Sie, wie Clients diese Ressource erreichen.",
|
"editInternalResourceDialogDestinationDescription": "Wählen Sie aus, wo diese Ressource läuft und wie Clients darauf zugreifen können",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Durch die Auswahl mehrerer Seiten wird ein ausfallsicheres Routing und Failover für hohe Verfügbarkeit ermöglicht.",
|
"internalResourceFormMultiSiteRoutingHelp": "Durch die Auswahl mehrerer Seiten wird ein ausfallsicheres Routing und Failover für hohe Verfügbarkeit ermöglicht.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Mehr erfahren",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Mehr erfahren",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Den Zugriff auf bestimmte TCP/UDP-Ports beschränken oder alle Ports erlauben/blockieren.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Den Zugriff auf bestimmte TCP/UDP-Ports beschränken oder alle Ports erlauben/blockieren.",
|
||||||
@@ -3682,7 +3679,7 @@
|
|||||||
"resourceLauncherSaveForEveryoneDescription": "Teilen Sie diese Ansicht mit allen Organisationsmitgliedern. Wenn nicht aktiviert, ist die Ansicht nur für Sie sichtbar.",
|
"resourceLauncherSaveForEveryoneDescription": "Teilen Sie diese Ansicht mit allen Organisationsmitgliedern. Wenn nicht aktiviert, ist die Ansicht nur für Sie sichtbar.",
|
||||||
"resourceLauncherMakePersonal": "Persönlich machen",
|
"resourceLauncherMakePersonal": "Persönlich machen",
|
||||||
"resourceLauncherFilter": "Filter",
|
"resourceLauncherFilter": "Filter",
|
||||||
"resourceLauncherFilterWithCount": "Filter, {count} angewendet",
|
"resourceLauncherFilterWithCount": "Filter, {count} applied",
|
||||||
"resourceLauncherSort": "Sortieren",
|
"resourceLauncherSort": "Sortieren",
|
||||||
"resourceLauncherSortAscending": "Aufsteigend sortieren",
|
"resourceLauncherSortAscending": "Aufsteigend sortieren",
|
||||||
"resourceLauncherSortDescending": "Absteigend sortieren",
|
"resourceLauncherSortDescending": "Absteigend sortieren",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Create Org User",
|
"createOrgUser": "Create Org User",
|
||||||
"actionUpdateOrg": "Update Organization",
|
"actionUpdateOrg": "Update Organization",
|
||||||
"actionRemoveInvitation": "Remove Invitation",
|
"actionRemoveInvitation": "Remove Invitation",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Update User",
|
"actionUpdateUser": "Update User",
|
||||||
"actionGetUser": "Get User",
|
"actionGetUser": "Get User",
|
||||||
"actionGetOrgUser": "Get Organization User",
|
"actionGetOrgUser": "Get Organization User",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Generate Access Token",
|
"actionGenerateAccessToken": "Generate Access Token",
|
||||||
"actionDeleteAccessToken": "Delete Access Token",
|
"actionDeleteAccessToken": "Delete Access Token",
|
||||||
"actionListAccessTokens": "List Access Tokens",
|
"actionListAccessTokens": "List Access Tokens",
|
||||||
"actionCreateResourceSessionToken": "Create Resource Session Token",
|
|
||||||
"actionCreateResourceRule": "Create Resource Rule",
|
"actionCreateResourceRule": "Create Resource Rule",
|
||||||
"actionDeleteResourceRule": "Delete Resource Rule",
|
"actionDeleteResourceRule": "Delete Resource Rule",
|
||||||
"actionListResourceRules": "List Resource Rules",
|
"actionListResourceRules": "List Resource Rules",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Close",
|
"createInternalResourceDialogClose": "Close",
|
||||||
"createInternalResourceDialogCreateClientResource": "Create Private Resource",
|
"createInternalResourceDialogCreateClientResource": "Create Private Resource",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Create a new resource that will only be accessible to clients connected to the organization",
|
"createInternalResourceDialogCreateClientResourceDescription": "Create a new resource that will only be accessible to clients connected to the organization",
|
||||||
"privateResourceGeneralDescription": "Configure the name, identifier, and other general resource settings.",
|
|
||||||
"privateResourceCreatePageSeeAll": "See All Private Resources",
|
"privateResourceCreatePageSeeAll": "See All Private Resources",
|
||||||
"privateResourceAllowIcmpPing": "Allow ICMP Ping",
|
"privateResourceAllowIcmpPing": "Allow ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "Network Access",
|
"privateResourceNetworkAccess": "Network Access",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Add Users",
|
"editInternalResourceDialogAddUsers": "Add Users",
|
||||||
"editInternalResourceDialogAddClients": "Add Clients",
|
"editInternalResourceDialogAddClients": "Add Clients",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destination",
|
"editInternalResourceDialogDestinationLabel": "Destination",
|
||||||
"editInternalResourceDialogDestinationDescription": "Configure how clients reach this resource.",
|
"editInternalResourceDialogDestinationDescription": "Choose where this resource runs and how clients reach it",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Selecting multiple sites enables resilient routing and failover for high availability.",
|
"internalResourceFormMultiSiteRoutingHelp": "Selecting multiple sites enables resilient routing and failover for high availability.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Learn more",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Learn more",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Restrict access to specific TCP/UDP ports or allow/block all ports.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Restrict access to specific TCP/UDP ports or allow/block all ports.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Crear usuario Org",
|
"createOrgUser": "Crear usuario Org",
|
||||||
"actionUpdateOrg": "Actualizar organización",
|
"actionUpdateOrg": "Actualizar organización",
|
||||||
"actionRemoveInvitation": "Eliminar invitación",
|
"actionRemoveInvitation": "Eliminar invitación",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Actualizar usuario",
|
"actionUpdateUser": "Actualizar usuario",
|
||||||
"actionGetUser": "Obtener usuario",
|
"actionGetUser": "Obtener usuario",
|
||||||
"actionGetOrgUser": "Obtener usuario de la organización",
|
"actionGetOrgUser": "Obtener usuario de la organización",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Generar token de acceso",
|
"actionGenerateAccessToken": "Generar token de acceso",
|
||||||
"actionDeleteAccessToken": "Eliminar token de acceso",
|
"actionDeleteAccessToken": "Eliminar token de acceso",
|
||||||
"actionListAccessTokens": "Lista de Tokens de Acceso",
|
"actionListAccessTokens": "Lista de Tokens de Acceso",
|
||||||
"actionCreateResourceSessionToken": "Crear Token de Sesión de Recurso",
|
|
||||||
"actionCreateResourceRule": "Crear Regla de Recursos",
|
"actionCreateResourceRule": "Crear Regla de Recursos",
|
||||||
"actionDeleteResourceRule": "Eliminar Regla de Recurso",
|
"actionDeleteResourceRule": "Eliminar Regla de Recurso",
|
||||||
"actionListResourceRules": "Lista de Reglas de Recursos",
|
"actionListResourceRules": "Lista de Reglas de Recursos",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Cerrar",
|
"createInternalResourceDialogClose": "Cerrar",
|
||||||
"createInternalResourceDialogCreateClientResource": "Crear recurso privado",
|
"createInternalResourceDialogCreateClientResource": "Crear recurso privado",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Crear un nuevo recurso que sólo será accesible a los clientes conectados a la organización",
|
"createInternalResourceDialogCreateClientResourceDescription": "Crear un nuevo recurso que sólo será accesible a los clientes conectados a la organización",
|
||||||
"privateResourceGeneralDescription": "Configura el nombre, identificador y otros ajustes generales del recurso.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Ver todos los recursos privados",
|
"privateResourceCreatePageSeeAll": "Ver todos los recursos privados",
|
||||||
"privateResourceAllowIcmpPing": "Permitir ping ICMP",
|
"privateResourceAllowIcmpPing": "Permitir ping ICMP",
|
||||||
"privateResourceNetworkAccess": "Acceso de red",
|
"privateResourceNetworkAccess": "Acceso de red",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Agregar usuarios",
|
"editInternalResourceDialogAddUsers": "Agregar usuarios",
|
||||||
"editInternalResourceDialogAddClients": "Agregar clientes",
|
"editInternalResourceDialogAddClients": "Agregar clientes",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destino",
|
"editInternalResourceDialogDestinationLabel": "Destino",
|
||||||
"editInternalResourceDialogDestinationDescription": "Configura cómo los clientes acceden a este recurso.",
|
"editInternalResourceDialogDestinationDescription": "Elija dónde se ejecuta este recurso y cómo lo alcanzan los clientes",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Seleccionar múltiples sitios habilita el enrutamiento resistente y la conmutación por error para alta disponibilidad.",
|
"internalResourceFormMultiSiteRoutingHelp": "Seleccionar múltiples sitios habilita el enrutamiento resistente y la conmutación por error para alta disponibilidad.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Más información",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Más información",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Restringir el acceso a puertos TCP/UDP específicos o permitir/bloquear todos los puertos.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Restringir el acceso a puertos TCP/UDP específicos o permitir/bloquear todos los puertos.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Créer un utilisateur Org",
|
"createOrgUser": "Créer un utilisateur Org",
|
||||||
"actionUpdateOrg": "Mettre à jour l'organisation",
|
"actionUpdateOrg": "Mettre à jour l'organisation",
|
||||||
"actionRemoveInvitation": "Supprimer l'invitation",
|
"actionRemoveInvitation": "Supprimer l'invitation",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Mettre à jour l'utilisateur",
|
"actionUpdateUser": "Mettre à jour l'utilisateur",
|
||||||
"actionGetUser": "Obtenir l'utilisateur",
|
"actionGetUser": "Obtenir l'utilisateur",
|
||||||
"actionGetOrgUser": "Obtenir l'utilisateur de l'organisation",
|
"actionGetOrgUser": "Obtenir l'utilisateur de l'organisation",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Générer un jeton d'accès",
|
"actionGenerateAccessToken": "Générer un jeton d'accès",
|
||||||
"actionDeleteAccessToken": "Supprimer un jeton d'accès",
|
"actionDeleteAccessToken": "Supprimer un jeton d'accès",
|
||||||
"actionListAccessTokens": "Lister les jetons d'accès",
|
"actionListAccessTokens": "Lister les jetons d'accès",
|
||||||
"actionCreateResourceSessionToken": "Créer un jeton de session de ressource",
|
|
||||||
"actionCreateResourceRule": "Créer une règle de ressource",
|
"actionCreateResourceRule": "Créer une règle de ressource",
|
||||||
"actionDeleteResourceRule": "Supprimer une règle de ressource",
|
"actionDeleteResourceRule": "Supprimer une règle de ressource",
|
||||||
"actionListResourceRules": "Lister les règles de ressource",
|
"actionListResourceRules": "Lister les règles de ressource",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Fermer",
|
"createInternalResourceDialogClose": "Fermer",
|
||||||
"createInternalResourceDialogCreateClientResource": "Créer une ressource privée",
|
"createInternalResourceDialogCreateClientResource": "Créer une ressource privée",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Créer une nouvelle ressource qui ne sera accessible qu'aux clients connectés à l'organisation",
|
"createInternalResourceDialogCreateClientResourceDescription": "Créer une nouvelle ressource qui ne sera accessible qu'aux clients connectés à l'organisation",
|
||||||
"privateResourceGeneralDescription": "Configurez le nom, l'identifiant et d'autres paramètres généraux de la ressource.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Voir toutes les ressources privées",
|
"privateResourceCreatePageSeeAll": "Voir toutes les ressources privées",
|
||||||
"privateResourceAllowIcmpPing": "Autoriser le ping ICMP",
|
"privateResourceAllowIcmpPing": "Autoriser le ping ICMP",
|
||||||
"privateResourceNetworkAccess": "Accès au réseau",
|
"privateResourceNetworkAccess": "Accès au réseau",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Ajouter des utilisateurs",
|
"editInternalResourceDialogAddUsers": "Ajouter des utilisateurs",
|
||||||
"editInternalResourceDialogAddClients": "Ajouter des clients",
|
"editInternalResourceDialogAddClients": "Ajouter des clients",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destination",
|
"editInternalResourceDialogDestinationLabel": "Destination",
|
||||||
"editInternalResourceDialogDestinationDescription": "Configurez comment les clients accèdent à cette ressource.",
|
"editInternalResourceDialogDestinationDescription": "Choisissez où cette ressource fonctionne et comment les clients l'atteignent",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "La sélection de plusieurs sites permet un routage résilient et un basculement pour une haute disponibilité.",
|
"internalResourceFormMultiSiteRoutingHelp": "La sélection de plusieurs sites permet un routage résilient et un basculement pour une haute disponibilité.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "En savoir plus",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "En savoir plus",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Restreindre l'accès à des ports TCP/UDP spécifiques ou autoriser/bloquer tous les ports.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Restreindre l'accès à des ports TCP/UDP spécifiques ou autoriser/bloquer tous les ports.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Crea Utente Org",
|
"createOrgUser": "Crea Utente Org",
|
||||||
"actionUpdateOrg": "Aggiorna Organizzazione",
|
"actionUpdateOrg": "Aggiorna Organizzazione",
|
||||||
"actionRemoveInvitation": "Rimuovi Invito",
|
"actionRemoveInvitation": "Rimuovi Invito",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Aggiorna Utente",
|
"actionUpdateUser": "Aggiorna Utente",
|
||||||
"actionGetUser": "Ottieni Utente",
|
"actionGetUser": "Ottieni Utente",
|
||||||
"actionGetOrgUser": "Ottieni Utente Organizzazione",
|
"actionGetOrgUser": "Ottieni Utente Organizzazione",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Genera Token di Accesso",
|
"actionGenerateAccessToken": "Genera Token di Accesso",
|
||||||
"actionDeleteAccessToken": "Elimina Token di Accesso",
|
"actionDeleteAccessToken": "Elimina Token di Accesso",
|
||||||
"actionListAccessTokens": "Elenca Token di Accesso",
|
"actionListAccessTokens": "Elenca Token di Accesso",
|
||||||
"actionCreateResourceSessionToken": "Crea Token di Sessione della Risorsa",
|
|
||||||
"actionCreateResourceRule": "Crea Regola Risorsa",
|
"actionCreateResourceRule": "Crea Regola Risorsa",
|
||||||
"actionDeleteResourceRule": "Elimina Regola Risorsa",
|
"actionDeleteResourceRule": "Elimina Regola Risorsa",
|
||||||
"actionListResourceRules": "Elenca Regole Risorsa",
|
"actionListResourceRules": "Elenca Regole Risorsa",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Chiudi",
|
"createInternalResourceDialogClose": "Chiudi",
|
||||||
"createInternalResourceDialogCreateClientResource": "Crea Risorsa Privata",
|
"createInternalResourceDialogCreateClientResource": "Crea Risorsa Privata",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Crea una nuova risorsa che sarà accessibile solo ai client connessi all'organizzazione",
|
"createInternalResourceDialogCreateClientResourceDescription": "Crea una nuova risorsa che sarà accessibile solo ai client connessi all'organizzazione",
|
||||||
"privateResourceGeneralDescription": "Configura il nome, l'identificativo e altre impostazioni generali delle risorse.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Vedi Tutte le Risorse Private",
|
"privateResourceCreatePageSeeAll": "Vedi Tutte le Risorse Private",
|
||||||
"privateResourceAllowIcmpPing": "Consenti ICMP Ping",
|
"privateResourceAllowIcmpPing": "Consenti ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "Accesso alla Rete",
|
"privateResourceNetworkAccess": "Accesso alla Rete",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Aggiungi Utenti",
|
"editInternalResourceDialogAddUsers": "Aggiungi Utenti",
|
||||||
"editInternalResourceDialogAddClients": "Aggiungi Clienti",
|
"editInternalResourceDialogAddClients": "Aggiungi Clienti",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destinazione",
|
"editInternalResourceDialogDestinationLabel": "Destinazione",
|
||||||
"editInternalResourceDialogDestinationDescription": "Configura come i client raggiungono questa risorsa.",
|
"editInternalResourceDialogDestinationDescription": "Scegli dove eseguire questa risorsa e come i client lo raggiungono",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Selezionare più siti consente un routing resiliente e Failover per alta disponibilità.",
|
"internalResourceFormMultiSiteRoutingHelp": "Selezionare più siti consente un routing resiliente e Failover per alta disponibilità.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Scopri di più",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Scopri di più",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Limita l'accesso a porte TCP/UDP specifiche o consenti/blocca tutte le porte.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Limita l'accesso a porte TCP/UDP specifiche o consenti/blocca tutte le porte.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "조직 사용자 생성",
|
"createOrgUser": "조직 사용자 생성",
|
||||||
"actionUpdateOrg": "조직 업데이트",
|
"actionUpdateOrg": "조직 업데이트",
|
||||||
"actionRemoveInvitation": "초대 제거",
|
"actionRemoveInvitation": "초대 제거",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "사용자 업데이트",
|
"actionUpdateUser": "사용자 업데이트",
|
||||||
"actionGetUser": "사용자 조회",
|
"actionGetUser": "사용자 조회",
|
||||||
"actionGetOrgUser": "조직 사용자 가져오기",
|
"actionGetOrgUser": "조직 사용자 가져오기",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "액세스 토큰 생성",
|
"actionGenerateAccessToken": "액세스 토큰 생성",
|
||||||
"actionDeleteAccessToken": "액세스 토큰 삭제",
|
"actionDeleteAccessToken": "액세스 토큰 삭제",
|
||||||
"actionListAccessTokens": "액세스 토큰 목록",
|
"actionListAccessTokens": "액세스 토큰 목록",
|
||||||
"actionCreateResourceSessionToken": "리소스 세션 토큰 생성",
|
|
||||||
"actionCreateResourceRule": "리소스 규칙 생성",
|
"actionCreateResourceRule": "리소스 규칙 생성",
|
||||||
"actionDeleteResourceRule": "리소스 규칙 삭제",
|
"actionDeleteResourceRule": "리소스 규칙 삭제",
|
||||||
"actionListResourceRules": "리소스 규칙 목록",
|
"actionListResourceRules": "리소스 규칙 목록",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "닫기",
|
"createInternalResourceDialogClose": "닫기",
|
||||||
"createInternalResourceDialogCreateClientResource": "사이트 리소스 생성",
|
"createInternalResourceDialogCreateClientResource": "사이트 리소스 생성",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "선택한 사이트에 연결된 클라이언트에 접근할 새 리소스를 생성합니다",
|
"createInternalResourceDialogCreateClientResourceDescription": "선택한 사이트에 연결된 클라이언트에 접근할 새 리소스를 생성합니다",
|
||||||
"privateResourceGeneralDescription": "이름, 식별자, 기타 일반 리소스 설정을 구성합니다.",
|
|
||||||
"privateResourceCreatePageSeeAll": "모든 개인 리소스 보기",
|
"privateResourceCreatePageSeeAll": "모든 개인 리소스 보기",
|
||||||
"privateResourceAllowIcmpPing": "ICMP 핑 허용",
|
"privateResourceAllowIcmpPing": "ICMP 핑 허용",
|
||||||
"privateResourceNetworkAccess": "네트워크 접근",
|
"privateResourceNetworkAccess": "네트워크 접근",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "사용자 추가",
|
"editInternalResourceDialogAddUsers": "사용자 추가",
|
||||||
"editInternalResourceDialogAddClients": "클라이언트 추가",
|
"editInternalResourceDialogAddClients": "클라이언트 추가",
|
||||||
"editInternalResourceDialogDestinationLabel": "대상지",
|
"editInternalResourceDialogDestinationLabel": "대상지",
|
||||||
"editInternalResourceDialogDestinationDescription": "클라이언트가 이 리소스에 어떻게 도달하는지 구성합니다.",
|
"editInternalResourceDialogDestinationDescription": "이 리소스가 실행되는 위치와 고객이 도달하는 방법 선택",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "다중 사이트를 선택하면 높은 가용성을 위해 회복력 있는 라우팅 및 페일오버가 가능해집니다.",
|
"internalResourceFormMultiSiteRoutingHelp": "다중 사이트를 선택하면 높은 가용성을 위해 회복력 있는 라우팅 및 페일오버가 가능해집니다.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "자세히 알아보기",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "자세히 알아보기",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "특정 TCP/UDP 포트에 대한 접근을 제한하거나 모든 포트를 허용/차단하십시오.",
|
"editInternalResourceDialogPortRestrictionsDescription": "특정 TCP/UDP 포트에 대한 접근을 제한하거나 모든 포트를 허용/차단하십시오.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Opprett Org bruker",
|
"createOrgUser": "Opprett Org bruker",
|
||||||
"actionUpdateOrg": "Oppdater organisasjon",
|
"actionUpdateOrg": "Oppdater organisasjon",
|
||||||
"actionRemoveInvitation": "Fjern invitasjon",
|
"actionRemoveInvitation": "Fjern invitasjon",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Oppdater bruker",
|
"actionUpdateUser": "Oppdater bruker",
|
||||||
"actionGetUser": "Hent bruker",
|
"actionGetUser": "Hent bruker",
|
||||||
"actionGetOrgUser": "Hent organisasjonsbruker",
|
"actionGetOrgUser": "Hent organisasjonsbruker",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Generer tilgangstoken",
|
"actionGenerateAccessToken": "Generer tilgangstoken",
|
||||||
"actionDeleteAccessToken": "Slett tilgangstoken",
|
"actionDeleteAccessToken": "Slett tilgangstoken",
|
||||||
"actionListAccessTokens": "List opp tilgangstokener",
|
"actionListAccessTokens": "List opp tilgangstokener",
|
||||||
"actionCreateResourceSessionToken": "Opprett ressurs økt-token",
|
|
||||||
"actionCreateResourceRule": "Opprett ressursregel",
|
"actionCreateResourceRule": "Opprett ressursregel",
|
||||||
"actionDeleteResourceRule": "Slett ressursregel",
|
"actionDeleteResourceRule": "Slett ressursregel",
|
||||||
"actionListResourceRules": "List opp ressursregler",
|
"actionListResourceRules": "List opp ressursregler",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Lukk",
|
"createInternalResourceDialogClose": "Lukk",
|
||||||
"createInternalResourceDialogCreateClientResource": "Opprett privat ressurs",
|
"createInternalResourceDialogCreateClientResource": "Opprett privat ressurs",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Opprett en ny ressurs som bare vil være tilgjengelig for kunder som er koblet til organisasjonen",
|
"createInternalResourceDialogCreateClientResourceDescription": "Opprett en ny ressurs som bare vil være tilgjengelig for kunder som er koblet til organisasjonen",
|
||||||
"privateResourceGeneralDescription": "Konfigurer navnet, identifikatoren og andre generelle ressursinnstillinger.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Se alle private ressurser",
|
"privateResourceCreatePageSeeAll": "Se alle private ressurser",
|
||||||
"privateResourceAllowIcmpPing": "Tillat ICMP Ping",
|
"privateResourceAllowIcmpPing": "Tillat ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "Nettverkstilgang",
|
"privateResourceNetworkAccess": "Nettverkstilgang",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Legg til brukere",
|
"editInternalResourceDialogAddUsers": "Legg til brukere",
|
||||||
"editInternalResourceDialogAddClients": "Legg til klienter",
|
"editInternalResourceDialogAddClients": "Legg til klienter",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destinasjon",
|
"editInternalResourceDialogDestinationLabel": "Destinasjon",
|
||||||
"editInternalResourceDialogDestinationDescription": "Konfigurer hvordan klienter får tilgang til denne ressursen.",
|
"editInternalResourceDialogDestinationDescription": "Velg hvor denne ressursen kjører og hvordan klienter når den",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Valg av flere nettsteder muliggjør motstandskraftig ruting og failover for høy tilgjengelighet.",
|
"internalResourceFormMultiSiteRoutingHelp": "Valg av flere nettsteder muliggjør motstandskraftig ruting og failover for høy tilgjengelighet.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Lær mer",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Lær mer",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Begrens tilgang til spesifikke TCP/UDP-porter eller tillate/blokkere alle porter.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Begrens tilgang til spesifikke TCP/UDP-porter eller tillate/blokkere alle porter.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Org gebruiker aanmaken",
|
"createOrgUser": "Org gebruiker aanmaken",
|
||||||
"actionUpdateOrg": "Organisatie bijwerken",
|
"actionUpdateOrg": "Organisatie bijwerken",
|
||||||
"actionRemoveInvitation": "Verwijder uitnodiging",
|
"actionRemoveInvitation": "Verwijder uitnodiging",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Gebruiker bijwerken",
|
"actionUpdateUser": "Gebruiker bijwerken",
|
||||||
"actionGetUser": "Gebruiker ophalen",
|
"actionGetUser": "Gebruiker ophalen",
|
||||||
"actionGetOrgUser": "Krijg organisatie-gebruiker",
|
"actionGetOrgUser": "Krijg organisatie-gebruiker",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Genereer Toegangstoken",
|
"actionGenerateAccessToken": "Genereer Toegangstoken",
|
||||||
"actionDeleteAccessToken": "Verwijder toegangstoken",
|
"actionDeleteAccessToken": "Verwijder toegangstoken",
|
||||||
"actionListAccessTokens": "Lijst toegangstokens",
|
"actionListAccessTokens": "Lijst toegangstokens",
|
||||||
"actionCreateResourceSessionToken": "Maak Resource Sessie Token",
|
|
||||||
"actionCreateResourceRule": "Bronregel aanmaken",
|
"actionCreateResourceRule": "Bronregel aanmaken",
|
||||||
"actionDeleteResourceRule": "Verwijder Resource Regel",
|
"actionDeleteResourceRule": "Verwijder Resource Regel",
|
||||||
"actionListResourceRules": "Bron regels weergeven",
|
"actionListResourceRules": "Bron regels weergeven",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Sluiten",
|
"createInternalResourceDialogClose": "Sluiten",
|
||||||
"createInternalResourceDialogCreateClientResource": "Privé bron maken",
|
"createInternalResourceDialogCreateClientResource": "Privé bron maken",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Maak een nieuwe bron aan die alleen toegankelijk is voor klanten die verbonden zijn met de organisatie",
|
"createInternalResourceDialogCreateClientResourceDescription": "Maak een nieuwe bron aan die alleen toegankelijk is voor klanten die verbonden zijn met de organisatie",
|
||||||
"privateResourceGeneralDescription": "Configureer de naam, identificatie en andere algemene resource-instellingen.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Bekijk Alle Privébronnen",
|
"privateResourceCreatePageSeeAll": "Bekijk Alle Privébronnen",
|
||||||
"privateResourceAllowIcmpPing": "Sta ICMP Ping toe",
|
"privateResourceAllowIcmpPing": "Sta ICMP Ping toe",
|
||||||
"privateResourceNetworkAccess": "Netwerktoegang",
|
"privateResourceNetworkAccess": "Netwerktoegang",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Gebruikers toevoegen",
|
"editInternalResourceDialogAddUsers": "Gebruikers toevoegen",
|
||||||
"editInternalResourceDialogAddClients": "Clienten toevoegen",
|
"editInternalResourceDialogAddClients": "Clienten toevoegen",
|
||||||
"editInternalResourceDialogDestinationLabel": "Bestemming",
|
"editInternalResourceDialogDestinationLabel": "Bestemming",
|
||||||
"editInternalResourceDialogDestinationDescription": "Configureer hoe klanten toegang krijgen tot deze resource.",
|
"editInternalResourceDialogDestinationDescription": "Kies waar deze bron draait en hoe clients deze bereiken",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Selecteren van meerdere sites maakt veerkrachtige routing en failover mogelijk voor hoge beschikbaarheid.",
|
"internalResourceFormMultiSiteRoutingHelp": "Selecteren van meerdere sites maakt veerkrachtige routing en failover mogelijk voor hoge beschikbaarheid.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Meer informatie",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Meer informatie",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Beperk toegang tot specifieke TCP/UDP-poorten of sta alle poorten toe/blokkeer.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Beperk toegang tot specifieke TCP/UDP-poorten of sta alle poorten toe/blokkeer.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Utwórz użytkownika Org",
|
"createOrgUser": "Utwórz użytkownika Org",
|
||||||
"actionUpdateOrg": "Aktualizuj organizację",
|
"actionUpdateOrg": "Aktualizuj organizację",
|
||||||
"actionRemoveInvitation": "Usuń zaproszenie",
|
"actionRemoveInvitation": "Usuń zaproszenie",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Zaktualizuj użytkownika",
|
"actionUpdateUser": "Zaktualizuj użytkownika",
|
||||||
"actionGetUser": "Pobierz użytkownika",
|
"actionGetUser": "Pobierz użytkownika",
|
||||||
"actionGetOrgUser": "Pobierz użytkownika organizacji",
|
"actionGetOrgUser": "Pobierz użytkownika organizacji",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Wygeneruj token dostępu",
|
"actionGenerateAccessToken": "Wygeneruj token dostępu",
|
||||||
"actionDeleteAccessToken": "Usuń token dostępu",
|
"actionDeleteAccessToken": "Usuń token dostępu",
|
||||||
"actionListAccessTokens": "Lista tokenów dostępu",
|
"actionListAccessTokens": "Lista tokenów dostępu",
|
||||||
"actionCreateResourceSessionToken": "Utwórz token sesji zasobu",
|
|
||||||
"actionCreateResourceRule": "Utwórz regułę zasobu",
|
"actionCreateResourceRule": "Utwórz regułę zasobu",
|
||||||
"actionDeleteResourceRule": "Usuń regułę zasobu",
|
"actionDeleteResourceRule": "Usuń regułę zasobu",
|
||||||
"actionListResourceRules": "Lista reguł zasobu",
|
"actionListResourceRules": "Lista reguł zasobu",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Zamknij",
|
"createInternalResourceDialogClose": "Zamknij",
|
||||||
"createInternalResourceDialogCreateClientResource": "Utwórz zasób prywatny",
|
"createInternalResourceDialogCreateClientResource": "Utwórz zasób prywatny",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Utwórz nowy zasób, który będzie dostępny tylko dla klientów podłączonych do organizacji",
|
"createInternalResourceDialogCreateClientResourceDescription": "Utwórz nowy zasób, który będzie dostępny tylko dla klientów podłączonych do organizacji",
|
||||||
"privateResourceGeneralDescription": "Skonfiguruj nazwę, identyfikator i inne ogólne ustawienia zasobów.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Zobacz wszystkie zasoby prywatne",
|
"privateResourceCreatePageSeeAll": "Zobacz wszystkie zasoby prywatne",
|
||||||
"privateResourceAllowIcmpPing": "Zezwalaj na ping ICMP",
|
"privateResourceAllowIcmpPing": "Zezwalaj na ping ICMP",
|
||||||
"privateResourceNetworkAccess": "Dostęp do sieci",
|
"privateResourceNetworkAccess": "Dostęp do sieci",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Dodaj użytkowników",
|
"editInternalResourceDialogAddUsers": "Dodaj użytkowników",
|
||||||
"editInternalResourceDialogAddClients": "Dodaj klientów",
|
"editInternalResourceDialogAddClients": "Dodaj klientów",
|
||||||
"editInternalResourceDialogDestinationLabel": "Miejsce docelowe",
|
"editInternalResourceDialogDestinationLabel": "Miejsce docelowe",
|
||||||
"editInternalResourceDialogDestinationDescription": "Skonfiguruj sposób, w jaki klienci docierają do tego zasobu.",
|
"editInternalResourceDialogDestinationDescription": "Wybierz, gdzie ten zasób działa i jak klienci go osiągają",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Wybór wielu stron umożliwia odporne trasowanie i awarię dla wysokiej dostępności.",
|
"internalResourceFormMultiSiteRoutingHelp": "Wybór wielu stron umożliwia odporne trasowanie i awarię dla wysokiej dostępności.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Dowiedz się więcej",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Dowiedz się więcej",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Ogranicz dostęp do konkretnych portów TCP/UDP lub zezwól/zablokuj wszystkie porty.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Ogranicz dostęp do konkretnych portów TCP/UDP lub zezwól/zablokuj wszystkie porty.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Criar utilizador Org",
|
"createOrgUser": "Criar utilizador Org",
|
||||||
"actionUpdateOrg": "Atualizar Organização",
|
"actionUpdateOrg": "Atualizar Organização",
|
||||||
"actionRemoveInvitation": "Remover Convite",
|
"actionRemoveInvitation": "Remover Convite",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Atualizar Usuário",
|
"actionUpdateUser": "Atualizar Usuário",
|
||||||
"actionGetUser": "Obter Usuário",
|
"actionGetUser": "Obter Usuário",
|
||||||
"actionGetOrgUser": "Obter Utilizador da Organização",
|
"actionGetOrgUser": "Obter Utilizador da Organização",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Gerar Token de Acesso",
|
"actionGenerateAccessToken": "Gerar Token de Acesso",
|
||||||
"actionDeleteAccessToken": "Eliminar Token de Acesso",
|
"actionDeleteAccessToken": "Eliminar Token de Acesso",
|
||||||
"actionListAccessTokens": "Listar Tokens de Acesso",
|
"actionListAccessTokens": "Listar Tokens de Acesso",
|
||||||
"actionCreateResourceSessionToken": "Criar Token de Sessão de Recurso",
|
|
||||||
"actionCreateResourceRule": "Criar Regra de Recurso",
|
"actionCreateResourceRule": "Criar Regra de Recurso",
|
||||||
"actionDeleteResourceRule": "Eliminar Regra de Recurso",
|
"actionDeleteResourceRule": "Eliminar Regra de Recurso",
|
||||||
"actionListResourceRules": "Listar Regras de Recurso",
|
"actionListResourceRules": "Listar Regras de Recurso",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Fechar",
|
"createInternalResourceDialogClose": "Fechar",
|
||||||
"createInternalResourceDialogCreateClientResource": "Criar Recurso Privado",
|
"createInternalResourceDialogCreateClientResource": "Criar Recurso Privado",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Criar um novo recurso que só será acessível para clientes conectados à organização",
|
"createInternalResourceDialogCreateClientResourceDescription": "Criar um novo recurso que só será acessível para clientes conectados à organização",
|
||||||
"privateResourceGeneralDescription": "Configure o nome, identificador e outras configurações gerais de recursos.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Ver Todos os Recursos Privados",
|
"privateResourceCreatePageSeeAll": "Ver Todos os Recursos Privados",
|
||||||
"privateResourceAllowIcmpPing": "Permitir ICMP Ping",
|
"privateResourceAllowIcmpPing": "Permitir ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "Acesso à Rede",
|
"privateResourceNetworkAccess": "Acesso à Rede",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Adicionar Usuários",
|
"editInternalResourceDialogAddUsers": "Adicionar Usuários",
|
||||||
"editInternalResourceDialogAddClients": "Adicionar Clientes",
|
"editInternalResourceDialogAddClients": "Adicionar Clientes",
|
||||||
"editInternalResourceDialogDestinationLabel": "Destino",
|
"editInternalResourceDialogDestinationLabel": "Destino",
|
||||||
"editInternalResourceDialogDestinationDescription": "Configure como os clientes acessam este recurso.",
|
"editInternalResourceDialogDestinationDescription": "Escolha onde este recurso é executado e como os clientes o acessam",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Selecionar múltiplos sites permite roteamento resiliente e failover para alta disponibilidade.",
|
"internalResourceFormMultiSiteRoutingHelp": "Selecionar múltiplos sites permite roteamento resiliente e failover para alta disponibilidade.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Saiba mais",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Saiba mais",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Restrinja o acesso a portas TCP/UDP específicas ou permita/bloqueie todas as portas.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Restrinja o acesso a portas TCP/UDP específicas ou permita/bloqueie todas as portas.",
|
||||||
|
|||||||
+2
-5
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Создать пользователя Org",
|
"createOrgUser": "Создать пользователя Org",
|
||||||
"actionUpdateOrg": "Обновить организацию",
|
"actionUpdateOrg": "Обновить организацию",
|
||||||
"actionRemoveInvitation": "Удалить приглашение",
|
"actionRemoveInvitation": "Удалить приглашение",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Обновить пользователя",
|
"actionUpdateUser": "Обновить пользователя",
|
||||||
"actionGetUser": "Получить пользователя",
|
"actionGetUser": "Получить пользователя",
|
||||||
"actionGetOrgUser": "Получить пользователя организации",
|
"actionGetOrgUser": "Получить пользователя организации",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Сгенерировать токен доступа",
|
"actionGenerateAccessToken": "Сгенерировать токен доступа",
|
||||||
"actionDeleteAccessToken": "Удалить токен доступа",
|
"actionDeleteAccessToken": "Удалить токен доступа",
|
||||||
"actionListAccessTokens": "Список токенов доступа",
|
"actionListAccessTokens": "Список токенов доступа",
|
||||||
"actionCreateResourceSessionToken": "Создать токен сеанса ресурса",
|
|
||||||
"actionCreateResourceRule": "Создать правило ресурса",
|
"actionCreateResourceRule": "Создать правило ресурса",
|
||||||
"actionDeleteResourceRule": "Удалить правило ресурса",
|
"actionDeleteResourceRule": "Удалить правило ресурса",
|
||||||
"actionListResourceRules": "Список правил ресурса",
|
"actionListResourceRules": "Список правил ресурса",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Закрыть",
|
"createInternalResourceDialogClose": "Закрыть",
|
||||||
"createInternalResourceDialogCreateClientResource": "Создать приватный ресурс",
|
"createInternalResourceDialogCreateClientResource": "Создать приватный ресурс",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Создать новый ресурс, который будет доступен только клиентам, подключенным к организации",
|
"createInternalResourceDialogCreateClientResourceDescription": "Создать новый ресурс, который будет доступен только клиентам, подключенным к организации",
|
||||||
"privateResourceGeneralDescription": "Настройте имя, идентификатор и другие общие параметры ресурса.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Посмотреть все частные ресурсы",
|
"privateResourceCreatePageSeeAll": "Посмотреть все частные ресурсы",
|
||||||
"privateResourceAllowIcmpPing": "Разрешить ICMP Ping",
|
"privateResourceAllowIcmpPing": "Разрешить ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "Сетевой доступ",
|
"privateResourceNetworkAccess": "Сетевой доступ",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Добавить пользователей",
|
"editInternalResourceDialogAddUsers": "Добавить пользователей",
|
||||||
"editInternalResourceDialogAddClients": "Добавить клиентов",
|
"editInternalResourceDialogAddClients": "Добавить клиентов",
|
||||||
"editInternalResourceDialogDestinationLabel": "Пункт назначения",
|
"editInternalResourceDialogDestinationLabel": "Пункт назначения",
|
||||||
"editInternalResourceDialogDestinationDescription": "Настройте, как клиенты получают доступ к этому ресурсу.",
|
"editInternalResourceDialogDestinationDescription": "Выберите, где этот ресурс работает и как к нему получают доступ клиенты",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Выбор нескольких сайтов позволяет обеспечить отказоустойчивую маршрутизацию и фейловер для высокой доступности.",
|
"internalResourceFormMultiSiteRoutingHelp": "Выбор нескольких сайтов позволяет обеспечить отказоустойчивую маршрутизацию и фейловер для высокой доступности.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Узнать больше",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Узнать больше",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Ограничьте доступ к определенным TCP/UDP-портам или разрешите/заблокируйте все порты.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Ограничьте доступ к определенным TCP/UDP-портам или разрешите/заблокируйте все порты.",
|
||||||
@@ -3682,7 +3679,7 @@
|
|||||||
"resourceLauncherSaveForEveryoneDescription": "Поделитесь этим видом со всеми членами организации. Если не отмечено, видимость только для вас.",
|
"resourceLauncherSaveForEveryoneDescription": "Поделитесь этим видом со всеми членами организации. Если не отмечено, видимость только для вас.",
|
||||||
"resourceLauncherMakePersonal": "Сделать личным",
|
"resourceLauncherMakePersonal": "Сделать личным",
|
||||||
"resourceLauncherFilter": "Фильтр",
|
"resourceLauncherFilter": "Фильтр",
|
||||||
"resourceLauncherFilterWithCount": "Фильтр, применено {count}",
|
"resourceLauncherFilterWithCount": "Filter, {count} applied",
|
||||||
"resourceLauncherSort": "Сортировать",
|
"resourceLauncherSort": "Сортировать",
|
||||||
"resourceLauncherSortAscending": "Сортировать по возрастанию",
|
"resourceLauncherSortAscending": "Сортировать по возрастанию",
|
||||||
"resourceLauncherSortDescending": "Сортировать по убыванию",
|
"resourceLauncherSortDescending": "Сортировать по убыванию",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "Organizasyon Kullanıcısı Oluştur",
|
"createOrgUser": "Organizasyon Kullanıcısı Oluştur",
|
||||||
"actionUpdateOrg": "Kuruluşu Güncelle",
|
"actionUpdateOrg": "Kuruluşu Güncelle",
|
||||||
"actionRemoveInvitation": "Daveti Kaldır",
|
"actionRemoveInvitation": "Daveti Kaldır",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "Kullanıcıyı Güncelle",
|
"actionUpdateUser": "Kullanıcıyı Güncelle",
|
||||||
"actionGetUser": "Kullanıcıyı Getir",
|
"actionGetUser": "Kullanıcıyı Getir",
|
||||||
"actionGetOrgUser": "Kuruluş Kullanıcısını Al",
|
"actionGetOrgUser": "Kuruluş Kullanıcısını Al",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "Erişim Jetonu Oluştur",
|
"actionGenerateAccessToken": "Erişim Jetonu Oluştur",
|
||||||
"actionDeleteAccessToken": "Erişim Jetonunu Sil",
|
"actionDeleteAccessToken": "Erişim Jetonunu Sil",
|
||||||
"actionListAccessTokens": "Erişim Jetonlarını Listele",
|
"actionListAccessTokens": "Erişim Jetonlarını Listele",
|
||||||
"actionCreateResourceSessionToken": "Kaynak Oturum Otomasyonu Oluştur",
|
|
||||||
"actionCreateResourceRule": "Kaynak Kuralı Oluştur",
|
"actionCreateResourceRule": "Kaynak Kuralı Oluştur",
|
||||||
"actionDeleteResourceRule": "Kaynak Kuralını Sil",
|
"actionDeleteResourceRule": "Kaynak Kuralını Sil",
|
||||||
"actionListResourceRules": "Kaynak Kurallarını Listele",
|
"actionListResourceRules": "Kaynak Kurallarını Listele",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "Kapat",
|
"createInternalResourceDialogClose": "Kapat",
|
||||||
"createInternalResourceDialogCreateClientResource": "Özel Kaynak Oluştur",
|
"createInternalResourceDialogCreateClientResource": "Özel Kaynak Oluştur",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "Seçilen siteye bağlı istemcilere erişilebilir olacak yeni bir kaynak oluşturun",
|
"createInternalResourceDialogCreateClientResourceDescription": "Seçilen siteye bağlı istemcilere erişilebilir olacak yeni bir kaynak oluşturun",
|
||||||
"privateResourceGeneralDescription": "Kaynağın adı, tanımlayıcı ve diğer genel ayarlarını yapılandırın.",
|
|
||||||
"privateResourceCreatePageSeeAll": "Tüm Özel Kaynakları Gör",
|
"privateResourceCreatePageSeeAll": "Tüm Özel Kaynakları Gör",
|
||||||
"privateResourceAllowIcmpPing": "ICMP Ping İzne Ver",
|
"privateResourceAllowIcmpPing": "ICMP Ping İzne Ver",
|
||||||
"privateResourceNetworkAccess": "Ağ Erişimi",
|
"privateResourceNetworkAccess": "Ağ Erişimi",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "Kullanıcılar Ekle",
|
"editInternalResourceDialogAddUsers": "Kullanıcılar Ekle",
|
||||||
"editInternalResourceDialogAddClients": "Müşteriler Ekle",
|
"editInternalResourceDialogAddClients": "Müşteriler Ekle",
|
||||||
"editInternalResourceDialogDestinationLabel": "Hedef",
|
"editInternalResourceDialogDestinationLabel": "Hedef",
|
||||||
"editInternalResourceDialogDestinationDescription": "Bu kaynağa müşterilerin nasıl erişeceğini yapılandırın.",
|
"editInternalResourceDialogDestinationDescription": "Bu kaynağın nerede çalıştığını ve istemcilerin ona nasıl eriştiğini seçin",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "Birden fazla site seçmek, yüksek kullanılabilirlik için dirençli yönlendirme ve yedeklik sağlar.",
|
"internalResourceFormMultiSiteRoutingHelp": "Birden fazla site seçmek, yüksek kullanılabilirlik için dirençli yönlendirme ve yedeklik sağlar.",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Daha fazla bilgi",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "Daha fazla bilgi",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "Belirtilen TCP/UDP portlarına erişimi kısıtlayın veya tüm portlara izin/engelleme verin.",
|
"editInternalResourceDialogPortRestrictionsDescription": "Belirtilen TCP/UDP portlarına erişimi kısıtlayın veya tüm portlara izin/engelleme verin.",
|
||||||
|
|||||||
+1
-4
@@ -1397,7 +1397,6 @@
|
|||||||
"createOrgUser": "创建组织用户",
|
"createOrgUser": "创建组织用户",
|
||||||
"actionUpdateOrg": "更新组织",
|
"actionUpdateOrg": "更新组织",
|
||||||
"actionRemoveInvitation": "移除邀请",
|
"actionRemoveInvitation": "移除邀请",
|
||||||
"actionRemoveUserRole": "Remove User Role",
|
|
||||||
"actionUpdateUser": "更新用户",
|
"actionUpdateUser": "更新用户",
|
||||||
"actionGetUser": "获取用户",
|
"actionGetUser": "获取用户",
|
||||||
"actionGetOrgUser": "获取组织用户",
|
"actionGetOrgUser": "获取组织用户",
|
||||||
@@ -1463,7 +1462,6 @@
|
|||||||
"actionGenerateAccessToken": "生成访问令牌",
|
"actionGenerateAccessToken": "生成访问令牌",
|
||||||
"actionDeleteAccessToken": "删除访问令牌",
|
"actionDeleteAccessToken": "删除访问令牌",
|
||||||
"actionListAccessTokens": "访问令牌",
|
"actionListAccessTokens": "访问令牌",
|
||||||
"actionCreateResourceSessionToken": "创建资源会话令牌",
|
|
||||||
"actionCreateResourceRule": "创建资源规则",
|
"actionCreateResourceRule": "创建资源规则",
|
||||||
"actionDeleteResourceRule": "删除资源规则",
|
"actionDeleteResourceRule": "删除资源规则",
|
||||||
"actionListResourceRules": "列出资源规则",
|
"actionListResourceRules": "列出资源规则",
|
||||||
@@ -2394,7 +2392,6 @@
|
|||||||
"createInternalResourceDialogClose": "关闭",
|
"createInternalResourceDialogClose": "关闭",
|
||||||
"createInternalResourceDialogCreateClientResource": "创建私有资源",
|
"createInternalResourceDialogCreateClientResource": "创建私有资源",
|
||||||
"createInternalResourceDialogCreateClientResourceDescription": "创建一个新资源只能为连接到组织的客户端访问",
|
"createInternalResourceDialogCreateClientResourceDescription": "创建一个新资源只能为连接到组织的客户端访问",
|
||||||
"privateResourceGeneralDescription": "配置名称、标识符和其他一般资源设置。",
|
|
||||||
"privateResourceCreatePageSeeAll": "查看所有私人资源",
|
"privateResourceCreatePageSeeAll": "查看所有私人资源",
|
||||||
"privateResourceAllowIcmpPing": "允许 ICMP Ping",
|
"privateResourceAllowIcmpPing": "允许 ICMP Ping",
|
||||||
"privateResourceNetworkAccess": "网络访问",
|
"privateResourceNetworkAccess": "网络访问",
|
||||||
@@ -3271,7 +3268,7 @@
|
|||||||
"editInternalResourceDialogAddUsers": "添加用户",
|
"editInternalResourceDialogAddUsers": "添加用户",
|
||||||
"editInternalResourceDialogAddClients": "添加客户端",
|
"editInternalResourceDialogAddClients": "添加客户端",
|
||||||
"editInternalResourceDialogDestinationLabel": "目标",
|
"editInternalResourceDialogDestinationLabel": "目标",
|
||||||
"editInternalResourceDialogDestinationDescription": "配置客户端如何访问此资源。",
|
"editInternalResourceDialogDestinationDescription": "选择该资源运行位置及客户端访问方式",
|
||||||
"internalResourceFormMultiSiteRoutingHelp": "选择多个站点可以实现高可用性的弹性路由和故障转移。",
|
"internalResourceFormMultiSiteRoutingHelp": "选择多个站点可以实现高可用性的弹性路由和故障转移。",
|
||||||
"internalResourceFormMultiSiteRoutingHelpLearnMore": "了解更多",
|
"internalResourceFormMultiSiteRoutingHelpLearnMore": "了解更多",
|
||||||
"editInternalResourceDialogPortRestrictionsDescription": "限制访问特定的TCP/UDP端口或允许/阻止所有端口。",
|
"editInternalResourceDialogPortRestrictionsDescription": "限制访问特定的TCP/UDP端口或允许/阻止所有端口。",
|
||||||
|
|||||||
@@ -1099,7 +1099,6 @@
|
|||||||
"actionGenerateAccessToken": "生成訪問令牌",
|
"actionGenerateAccessToken": "生成訪問令牌",
|
||||||
"actionDeleteAccessToken": "刪除訪問令牌",
|
"actionDeleteAccessToken": "刪除訪問令牌",
|
||||||
"actionListAccessTokens": "訪問令牌",
|
"actionListAccessTokens": "訪問令牌",
|
||||||
"actionCreateResourceSessionToken": "建立資源工作階段權杖",
|
|
||||||
"actionCreateResourceRule": "創建資源規則",
|
"actionCreateResourceRule": "創建資源規則",
|
||||||
"actionDeleteResourceRule": "刪除資源規則",
|
"actionDeleteResourceRule": "刪除資源規則",
|
||||||
"actionListResourceRules": "列出資源規則",
|
"actionListResourceRules": "列出資源規則",
|
||||||
|
|||||||
Generated
+4
-4
@@ -12,7 +12,7 @@
|
|||||||
"@asteasolutions/zod-to-openapi": "8.5.0",
|
"@asteasolutions/zod-to-openapi": "8.5.0",
|
||||||
"@aws-sdk/client-s3": "3.1056.0",
|
"@aws-sdk/client-s3": "3.1056.0",
|
||||||
"@devolutions/iron-remote-desktop": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-0.0.0.tgz",
|
"@devolutions/iron-remote-desktop": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-0.0.0.tgz",
|
||||||
"@devolutions/iron-remote-desktop-rdp": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-rdp-0.0.1.tgz",
|
"@devolutions/iron-remote-desktop-rdp": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-rdp-0.0.0.tgz",
|
||||||
"@headlessui/react": "2.2.10",
|
"@headlessui/react": "2.2.10",
|
||||||
"@hookform/resolvers": "5.4.0",
|
"@hookform/resolvers": "5.4.0",
|
||||||
"@monaco-editor/react": "4.7.0",
|
"@monaco-editor/react": "4.7.0",
|
||||||
@@ -1124,9 +1124,9 @@
|
|||||||
"integrity": "sha512-9o7PkCw9fdvGTPs0hgsUJG10QleGgcdsSCw1ekLpUOlVXtWCuiuPH+0bPDFhLWxqbVA+8pyVhwqdOI+t1T3TNA=="
|
"integrity": "sha512-9o7PkCw9fdvGTPs0hgsUJG10QleGgcdsSCw1ekLpUOlVXtWCuiuPH+0bPDFhLWxqbVA+8pyVhwqdOI+t1T3TNA=="
|
||||||
},
|
},
|
||||||
"node_modules/@devolutions/iron-remote-desktop-rdp": {
|
"node_modules/@devolutions/iron-remote-desktop-rdp": {
|
||||||
"version": "0.0.1",
|
"version": "0.0.0",
|
||||||
"resolved": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-rdp-0.0.1.tgz",
|
"resolved": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-rdp-0.0.0.tgz",
|
||||||
"integrity": "sha512-sIHllJ6rJfAgClsUFjJfVGFjIxm6ZQRyGfinwCzHYgwnHAMFE+Kvm0YzR9tg811Fhjm5F6gNUSLAll+7Eh0Deg=="
|
"integrity": "sha512-O0YVpOJDwUzekH3N2QKj+48WP+56wI0sj4VmaJkGoW5XgyAj2ONn2k3i+vk17Eavx+Vg6vAg3lwYRAOK4kKIDQ=="
|
||||||
},
|
},
|
||||||
"node_modules/@dotenvx/dotenvx": {
|
"node_modules/@dotenvx/dotenvx": {
|
||||||
"version": "1.69.1",
|
"version": "1.69.1",
|
||||||
|
|||||||
+1
-1
@@ -34,7 +34,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@asteasolutions/zod-to-openapi": "8.5.0",
|
"@asteasolutions/zod-to-openapi": "8.5.0",
|
||||||
"@devolutions/iron-remote-desktop": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-0.0.0.tgz",
|
"@devolutions/iron-remote-desktop": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-0.0.0.tgz",
|
||||||
"@devolutions/iron-remote-desktop-rdp": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-rdp-0.0.1.tgz",
|
"@devolutions/iron-remote-desktop-rdp": "https://static.pangolin.net/packages/devolutions-iron-remote-desktop-rdp-0.0.0.tgz",
|
||||||
"@aws-sdk/client-s3": "3.1056.0",
|
"@aws-sdk/client-s3": "3.1056.0",
|
||||||
"@headlessui/react": "2.2.10",
|
"@headlessui/react": "2.2.10",
|
||||||
"@hookform/resolvers": "5.4.0",
|
"@hookform/resolvers": "5.4.0",
|
||||||
|
|||||||
@@ -71,7 +71,6 @@ export enum ActionsEnum {
|
|||||||
setResourceWhitelist = "setResourceWhitelist",
|
setResourceWhitelist = "setResourceWhitelist",
|
||||||
getResourceWhitelist = "getResourceWhitelist",
|
getResourceWhitelist = "getResourceWhitelist",
|
||||||
generateAccessToken = "generateAccessToken",
|
generateAccessToken = "generateAccessToken",
|
||||||
createResourceSessionToken = "createResourceSessionToken",
|
|
||||||
deleteAcessToken = "deleteAcessToken",
|
deleteAcessToken = "deleteAcessToken",
|
||||||
listAccessTokens = "listAccessTokens",
|
listAccessTokens = "listAccessTokens",
|
||||||
createResourceRule = "createResourceRule",
|
createResourceRule = "createResourceRule",
|
||||||
|
|||||||
@@ -736,14 +736,11 @@ export async function verifyResourceSession(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If headerAuthExtendedCompatibility is activated but no clientHeaderAuth provided, force client to challenge.
|
// If headerAuthExtendedCompatibility is activated but no clientHeaderAuth provided, force client to challenge
|
||||||
// Skip the challenge when SSO is also enabled so browsers get the SSO redirect instead of a native Basic
|
|
||||||
// Auth dialog; clients that proactively send Authorization: Basic are still accepted above.
|
|
||||||
if (
|
if (
|
||||||
headerAuthExtendedCompatibility &&
|
headerAuthExtendedCompatibility &&
|
||||||
headerAuthExtendedCompatibility.extendedCompatibilityIsActivated &&
|
headerAuthExtendedCompatibility.extendedCompatibilityIsActivated &&
|
||||||
!clientHeaderAuth &&
|
!clientHeaderAuth
|
||||||
!sso
|
|
||||||
) {
|
) {
|
||||||
return headerAuthChallenged(res, redirectPath, resource.orgId);
|
return headerAuthChallenged(res, redirectPath, resource.orgId);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -808,16 +808,6 @@ authenticated.post(
|
|||||||
accessToken.generateAccessToken
|
accessToken.generateAccessToken
|
||||||
);
|
);
|
||||||
|
|
||||||
authenticated.post(
|
|
||||||
`/resource/:resourceId/session-token`,
|
|
||||||
verifyApiKeyResourceAccess,
|
|
||||||
verifyApiKeyUserAccess,
|
|
||||||
verifyLimits,
|
|
||||||
verifyApiKeyHasAction(ActionsEnum.createResourceSessionToken),
|
|
||||||
logActionAudit(ActionsEnum.createResourceSessionToken),
|
|
||||||
resource.createResourceSessionToken
|
|
||||||
);
|
|
||||||
|
|
||||||
authenticated.delete(
|
authenticated.delete(
|
||||||
`/access-token/:accessTokenId`,
|
`/access-token/:accessTokenId`,
|
||||||
verifyApiKeyAccessTokenAccess,
|
verifyApiKeyAccessTokenAccess,
|
||||||
|
|||||||
@@ -94,13 +94,7 @@ async function flushSitePingsToDb(): Promise<void> {
|
|||||||
const pingsToFlush = new Map(pendingSitePings);
|
const pingsToFlush = new Map(pendingSitePings);
|
||||||
pendingSitePings.clear();
|
pendingSitePings.clear();
|
||||||
|
|
||||||
// Sort by id ascending so concurrent writers (other app replicas, or
|
const entries = Array.from(pingsToFlush.entries());
|
||||||
// unrelated single-row updates elsewhere in the app) always acquire row
|
|
||||||
// locks in the same order. Without this, overlapping batches/updates
|
|
||||||
// that touch the same rows in different orders can deadlock each other.
|
|
||||||
const entries = Array.from(pingsToFlush.entries()).sort(
|
|
||||||
([a], [b]) => a - b
|
|
||||||
);
|
|
||||||
|
|
||||||
const BATCH_SIZE = 50;
|
const BATCH_SIZE = 50;
|
||||||
for (let i = 0; i < entries.length; i += BATCH_SIZE) {
|
for (let i = 0; i < entries.length; i += BATCH_SIZE) {
|
||||||
@@ -199,11 +193,7 @@ async function flushClientPingsToDb(): Promise<void> {
|
|||||||
|
|
||||||
// ── Flush client pings ─────────────────────────────────────────────
|
// ── Flush client pings ─────────────────────────────────────────────
|
||||||
if (pingsToFlush.size > 0) {
|
if (pingsToFlush.size > 0) {
|
||||||
// Sort ascending for consistent lock ordering (see note in
|
const entries = Array.from(pingsToFlush.entries());
|
||||||
// flushSitePingsToDb).
|
|
||||||
const entries = Array.from(pingsToFlush.entries()).sort(
|
|
||||||
([a], [b]) => a - b
|
|
||||||
);
|
|
||||||
|
|
||||||
const BATCH_SIZE = 50;
|
const BATCH_SIZE = 50;
|
||||||
for (let i = 0; i < entries.length; i += BATCH_SIZE) {
|
for (let i = 0; i < entries.length; i += BATCH_SIZE) {
|
||||||
|
|||||||
@@ -1,133 +0,0 @@
|
|||||||
import { Request, Response, NextFunction } from "express";
|
|
||||||
import { z } from "zod";
|
|
||||||
import { db } from "@server/db";
|
|
||||||
import { resources, users, userOrgs } from "@server/db";
|
|
||||||
import { eq, and } from "drizzle-orm";
|
|
||||||
import { createResourceSession } from "@server/auth/sessions/resource";
|
|
||||||
import HttpCode from "@server/types/HttpCode";
|
|
||||||
import createHttpError from "http-errors";
|
|
||||||
import { fromError } from "zod-validation-error";
|
|
||||||
import logger from "@server/logger";
|
|
||||||
import { createSession, generateSessionToken } from "@server/auth/sessions/app";
|
|
||||||
import { response } from "@server/lib/response";
|
|
||||||
|
|
||||||
const createResourceSessionTokenParams = z.strictObject({
|
|
||||||
resourceId: z.coerce.number().int().positive()
|
|
||||||
});
|
|
||||||
|
|
||||||
const createResourceSessionTokenBody = z.strictObject({
|
|
||||||
userId: z.string().nonempty(),
|
|
||||||
idpId: z.coerce.number().int().positive().optional()
|
|
||||||
});
|
|
||||||
|
|
||||||
export type CreateResourceSessionTokenResponse = {
|
|
||||||
requestToken: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function createResourceSessionToken(
|
|
||||||
req: Request,
|
|
||||||
res: Response,
|
|
||||||
next: NextFunction
|
|
||||||
): Promise<any> {
|
|
||||||
try {
|
|
||||||
const parsedParams = createResourceSessionTokenParams.safeParse(
|
|
||||||
req.params
|
|
||||||
);
|
|
||||||
if (!parsedParams.success) {
|
|
||||||
return next(
|
|
||||||
createHttpError(
|
|
||||||
HttpCode.BAD_REQUEST,
|
|
||||||
fromError(parsedParams.error).toString()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const parsedBody = createResourceSessionTokenBody.safeParse(req.body);
|
|
||||||
if (!parsedBody.success) {
|
|
||||||
return next(
|
|
||||||
createHttpError(
|
|
||||||
HttpCode.BAD_REQUEST,
|
|
||||||
fromError(parsedBody.error).toString()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const { resourceId } = parsedParams.data;
|
|
||||||
const { userId, idpId } = parsedBody.data;
|
|
||||||
|
|
||||||
const [resource] = await db
|
|
||||||
.select()
|
|
||||||
.from(resources)
|
|
||||||
.where(eq(resources.resourceId, resourceId))
|
|
||||||
.limit(1);
|
|
||||||
|
|
||||||
if (!resource) {
|
|
||||||
return next(
|
|
||||||
createHttpError(
|
|
||||||
HttpCode.NOT_FOUND,
|
|
||||||
`Resource with ID ${resourceId} not found`
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const candidates = await db
|
|
||||||
.select({ userId: users.userId })
|
|
||||||
.from(userOrgs)
|
|
||||||
.innerJoin(users, eq(userOrgs.userId, users.userId))
|
|
||||||
.where(
|
|
||||||
and(
|
|
||||||
eq(users.userId, userId),
|
|
||||||
eq(userOrgs.orgId, resource.orgId)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (candidates.length === 0) {
|
|
||||||
return next(
|
|
||||||
createHttpError(
|
|
||||||
HttpCode.NOT_FOUND,
|
|
||||||
`User not found in the organization that owns this resource`
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (candidates.length > 1) {
|
|
||||||
return next(
|
|
||||||
createHttpError(
|
|
||||||
HttpCode.BAD_REQUEST,
|
|
||||||
"Multiple users match this username (external users from different identity providers). Specify idpId to disambiguate."
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const targetUserId = candidates[0].userId;
|
|
||||||
|
|
||||||
const appSessionToken = generateSessionToken();
|
|
||||||
const appSession = await createSession(appSessionToken, targetUserId);
|
|
||||||
|
|
||||||
const requestToken = generateSessionToken();
|
|
||||||
await createResourceSession({
|
|
||||||
resourceId,
|
|
||||||
token: requestToken,
|
|
||||||
userSessionId: appSession.sessionId,
|
|
||||||
isRequestToken: true,
|
|
||||||
expiresAt: Date.now() + 1000 * 30, // 30 seconds
|
|
||||||
sessionLength: 1000 * 30,
|
|
||||||
doNotExtend: true
|
|
||||||
});
|
|
||||||
|
|
||||||
logger.debug("Resource session token created successfully");
|
|
||||||
|
|
||||||
return response<CreateResourceSessionTokenResponse>(res, {
|
|
||||||
data: { requestToken },
|
|
||||||
success: true,
|
|
||||||
error: false,
|
|
||||||
message: "Resource session token created successfully",
|
|
||||||
status: HttpCode.OK
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
logger.error(error);
|
|
||||||
return next(
|
|
||||||
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -17,7 +17,6 @@ export * from "./getResourceWhitelist";
|
|||||||
export * from "./authWithWhitelist";
|
export * from "./authWithWhitelist";
|
||||||
export * from "./authWithAccessToken";
|
export * from "./authWithAccessToken";
|
||||||
export * from "./getExchangeToken";
|
export * from "./getExchangeToken";
|
||||||
export * from "./createResourceSessionToken";
|
|
||||||
export * from "./createResourceRule";
|
export * from "./createResourceRule";
|
||||||
export * from "./deleteResourceRule";
|
export * from "./deleteResourceRule";
|
||||||
export * from "./listResourceRules";
|
export * from "./listResourceRules";
|
||||||
|
|||||||
@@ -106,23 +106,17 @@ export function PrivateResourceNetworkAccessFields({
|
|||||||
embedInParentGrid = false
|
embedInParentGrid = false
|
||||||
}: PrivateResourceNetworkAccessFieldsProps) {
|
}: PrivateResourceNetworkAccessFieldsProps) {
|
||||||
const t = useTranslations();
|
const t = useTranslations();
|
||||||
const resolvedInitialTcp = initialTcp !== undefined ? initialTcp : "*";
|
|
||||||
const resolvedInitialUdp = initialUdp !== undefined ? initialUdp : "*";
|
|
||||||
const [tcpPortMode, setTcpPortMode] = useState<PortMode>(() =>
|
const [tcpPortMode, setTcpPortMode] = useState<PortMode>(() =>
|
||||||
getPortModeFromString(resolvedInitialTcp)
|
getPortModeFromString(initialTcp)
|
||||||
);
|
);
|
||||||
const [udpPortMode, setUdpPortMode] = useState<PortMode>(() =>
|
const [udpPortMode, setUdpPortMode] = useState<PortMode>(() =>
|
||||||
getPortModeFromString(resolvedInitialUdp)
|
getPortModeFromString(initialUdp)
|
||||||
);
|
);
|
||||||
const [tcpCustomPorts, setTcpCustomPorts] = useState(() =>
|
const [tcpCustomPorts, setTcpCustomPorts] = useState(() =>
|
||||||
resolvedInitialTcp && resolvedInitialTcp !== "*"
|
initialTcp && initialTcp !== "*" ? initialTcp : ""
|
||||||
? resolvedInitialTcp
|
|
||||||
: ""
|
|
||||||
);
|
);
|
||||||
const [udpCustomPorts, setUdpCustomPorts] = useState(() =>
|
const [udpCustomPorts, setUdpCustomPorts] = useState(() =>
|
||||||
resolvedInitialUdp && resolvedInitialUdp !== "*"
|
initialUdp && initialUdp !== "*" ? initialUdp : ""
|
||||||
? resolvedInitialUdp
|
|
||||||
: ""
|
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ export default function PrivateResourceGeneralPage() {
|
|||||||
{t("resourceGeneral")}
|
{t("resourceGeneral")}
|
||||||
</SettingsSectionTitle>
|
</SettingsSectionTitle>
|
||||||
<SettingsSectionDescription>
|
<SettingsSectionDescription>
|
||||||
{t("privateResourceGeneralDescription")}
|
{t("resourceGeneralDescription")}
|
||||||
</SettingsSectionDescription>
|
</SettingsSectionDescription>
|
||||||
</SettingsSectionHeader>
|
</SettingsSectionHeader>
|
||||||
|
|
||||||
|
|||||||
@@ -77,8 +77,7 @@ function getActionsCategories(root: boolean) {
|
|||||||
[t("actionDeleteSiteResource")]: "deleteSiteResource",
|
[t("actionDeleteSiteResource")]: "deleteSiteResource",
|
||||||
[t("actionGetSiteResource")]: "getSiteResource",
|
[t("actionGetSiteResource")]: "getSiteResource",
|
||||||
[t("actionListSiteResources")]: "listSiteResources",
|
[t("actionListSiteResources")]: "listSiteResources",
|
||||||
[t("actionUpdateSiteResource")]: "updateSiteResource",
|
[t("actionUpdateSiteResource")]: "updateSiteResource"
|
||||||
[t("actionCreateResourceSessionToken")]: "createResourceSessionToken"
|
|
||||||
},
|
},
|
||||||
|
|
||||||
Target: {
|
Target: {
|
||||||
|
|||||||
Reference in New Issue
Block a user