aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-11 00:52:57 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-11 00:52:57 -0500
commitfdf78dd5bf25f345cc8419cc547cdbafaf54ae86 (patch)
tree0e1f8ef9f27e7a0a6532299161db06b8dc5a999b /ci
parent39a22deb6a232356bf7b2ef8386679bc8ea2f697 (diff)
switch default api path, reduce bundle size, and swtich to async componentsv0.1.3
Diffstat (limited to 'ci')
-rw-r--r--ci/config/CMNext.json6
-rw-r--r--ci/config/Essentials.Accounts.json14
2 files changed, 10 insertions, 10 deletions
diff --git a/ci/config/CMNext.json b/ci/config/CMNext.json
index 1b3c516..d11a8f9 100644
--- a/ci/config/CMNext.json
+++ b/ci/config/CMNext.json
@@ -3,15 +3,15 @@
"debug": false,
"post_endpoint": {
- "path": "/blog/posts"
+ "path": "/api/blog/posts"
},
"channel_endpoint": {
- "path": "/blog/channels"
+ "path": "/api/blog/channels"
},
"content_endpoint": {
- "path": "/blog/content",
+ "path": "/api/blog/content",
"max_content_length": 50000000
},
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,