From 51608d2021fccc7e305e5ffcc26e2268f6e2d9e3 Mon Sep 17 00:00:00 2001 From: MT Lewis Date: Thu, 25 Nov 2021 18:16:37 +0000 Subject: [PATCH] backend-common: bits->bytes in config schema comment Signed-off-by: MT Lewis --- packages/backend-common/config.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/backend-common/config.d.ts b/packages/backend-common/config.d.ts index 66b54d1ebb..3ba3d83ebc 100644 --- a/packages/backend-common/config.d.ts +++ b/packages/backend-common/config.d.ts @@ -23,8 +23,9 @@ export interface Config { /** Backend configuration for when request authentication is enabled */ auth?: { /** - * Secret shared by all backends for generating tokens - * Format is base64 24-bit key + * Secret shared by all backends for generating tokens. Should be + * a base64 string, recommended length is 24 bytes. + * * @visibility secret */ secret: string;