backend-common: make secret required if authorization config block is provided

Signed-off-by: Mike Lewis <mtlewis@users.noreply.github.com>
This commit is contained in:
Mike Lewis
2021-11-23 13:56:07 +00:00
parent ef9dfd3440
commit db1befcf39
+1 -1
View File
@@ -27,7 +27,7 @@ export interface Config {
* Format is base64 24-bit key
* @visibility secret
*/
secret?: string;
secret: string;
};
baseUrl: string; // defined in core, but repeated here without doc