From 04486d65dcc49d72ac75e48781a85e8461305c44 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 4 Aug 2021 00:18:15 +0200 Subject: [PATCH] web: fully re-label service connection to integration Signed-off-by: Jens Langhammer --- web/src/interfaces/AdminInterface.ts | 4 ++-- web/src/pages/outposts/ServiceConnectionDockerForm.ts | 4 ++-- web/src/pages/outposts/ServiceConnectionKubernetesForm.ts | 4 ++-- web/src/pages/outposts/ServiceConnectionListPage.ts | 6 +++--- web/src/routes.ts | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/web/src/interfaces/AdminInterface.ts b/web/src/interfaces/AdminInterface.ts index 09b1c9bed..1a8dbd8df 100644 --- a/web/src/interfaces/AdminInterface.ts +++ b/web/src/interfaces/AdminInterface.ts @@ -182,8 +182,8 @@ export class AdminInterface extends LitElement { ${t`Outposts`} - - ${t`Service Connections`} + + ${t`Integrations`} diff --git a/web/src/pages/outposts/ServiceConnectionDockerForm.ts b/web/src/pages/outposts/ServiceConnectionDockerForm.ts index d415628dc..d72c26cf4 100644 --- a/web/src/pages/outposts/ServiceConnectionDockerForm.ts +++ b/web/src/pages/outposts/ServiceConnectionDockerForm.ts @@ -19,9 +19,9 @@ export class ServiceConnectionDockerForm extends ModelForm { pageTitle(): string { - return "Outpost Service-Connections"; + return "Outpost integrations"; } pageDescription(): string | undefined { - return "Outpost Service-Connections define how authentik connects to external platforms to manage and deploy Outposts."; + return "Outpost integrations define how authentik connects to external platforms to manage and deploy Outposts."; } pageIcon(): string { return "pf-icon pf-icon-integration"; @@ -96,7 +96,7 @@ export class OutpostServiceConnectionListPage extends TablePage { return new OutpostsApi( DEFAULT_CONFIG, diff --git a/web/src/routes.ts b/web/src/routes.ts index 2a08628e0..e520049d3 100644 --- a/web/src/routes.ts +++ b/web/src/routes.ts @@ -105,7 +105,7 @@ export const ROUTES: Route[] = [ new Route(new RegExp("^/events/rules$"), html``), new Route(new RegExp("^/outpost/outposts$"), html``), new Route( - new RegExp("^/outpost/service-connections$"), + new RegExp("^/outpost/integrations$"), html``, ), new Route(