From 09696207a627c7dea8bb8059864c522f0b099a19 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 9 Oct 2021 15:57:49 +0200 Subject: [PATCH] web/user: remove debug Signed-off-by: Jens Langhammer --- schema.yml | 2 -- web/src/user/config.ts | 1 - 2 files changed, 3 deletions(-) diff --git a/schema.yml b/schema.yml index 6eb3c9fb2..4d489dcdc 100644 --- a/schema.yml +++ b/schema.yml @@ -29305,7 +29305,6 @@ components: - is_superuser - name - pk - - settings - uid - username UserSelfGroups: @@ -29345,7 +29344,6 @@ components: additionalProperties: {} required: - name - - settings - username UserServiceAccountRequest: type: object diff --git a/web/src/user/config.ts b/web/src/user/config.ts index 482ca13bf..3b1f3e799 100644 --- a/web/src/user/config.ts +++ b/web/src/user/config.ts @@ -57,7 +57,6 @@ export function uiConfig(): Promise { if ("userInterface" in settings) { config = parseConfig(settings.userInterface); } - console.debug(JSON.stringify(config)); return config; }); }