From fdf78dd5bf25f345cc8419cc547cdbafaf54ae86 Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 11 Nov 2023 00:52:57 -0500 Subject: switch default api path, reduce bundle size, and swtich to async components --- ci/config/Essentials.Accounts.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ci/config/Essentials.Accounts.json') diff --git a/ci/config/Essentials.Accounts.json b/ci/config/Essentials.Accounts.json index bde9ff8..8903cc1 100644 --- a/ci/config/Essentials.Accounts.json +++ b/ci/config/Essentials.Accounts.json @@ -4,35 +4,35 @@ //endpoints "login_endpoint": { - "path": "/account/login", + "path": "/api/account/login", "max_login_attempts": 10, //10 failed attempts in 10 minutes "failed_attempt_timeout_sec": 600 //10 minutes }, "keepalive_endpoint": { - "path": "/account/keepalive", + "path": "/api/account/keepalive", //Regen token every 15 mins along with cookies "token_refresh_sec": 600 //15 minutes }, "profile_endpoint": { - "path": "/account/profile" + "path": "/api/account/profile" }, "password_endpoint": { - "path": "/account/reset" + "path": "/api/account/reset" }, "mfa_endpoint": { - "path": "/account/mfa" + "path": "/api/account/mfa" }, "logout_endpoint": { - "path": "/account/logout" + "path": "/api/account/logout" }, "pki_auth_endpoint": { - "path": "/account/pki", + "path": "/api/account/pki", "jwt_time_dif_sec": 30, "max_login_attempts": 10, "failed_attempt_timeout_sec": 600, -- cgit