From 77c6ee00eaf54c1646ff90e85dcb0121a7047d44 Mon Sep 17 00:00:00 2001 From: Kun Deng Date: Sun, 4 Sep 2022 18:39:48 -0400 Subject: [PATCH] JWT symmetric keys Updated config file to store neccessary information --- appsettings.Development.json | 6 ++++++ appsettings.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/appsettings.Development.json b/appsettings.Development.json index cd727fb..c8ed0de 100644 --- a/appsettings.Development.json +++ b/appsettings.Development.json @@ -16,6 +16,12 @@ "PrivateKeyPath": "", "PublicKeyPath": "" }, + "JWT": { + "Issuer": "", + "Audience": "", + "Secret": "", + "Subject": "" + }, "ConnectionStrings": { "DefaultConnection": "Server=;Database=;Uid=;Pwd=;" }, diff --git a/appsettings.json b/appsettings.json index 68eb482..71f2123 100644 --- a/appsettings.json +++ b/appsettings.json @@ -16,6 +16,12 @@ "PrivateKeyPath": "", "PublicKeyPath": "" }, + "JWT": { + "Issuer": "", + "Audience": "", + "Secret": "", + "Subject": "" + }, "ConnectionStrings": { "DefaultConnection": "Server=;Database=;Uid=;Pwd=;" },