From f20be5213fe849082133d95a63dc5405cd7a6e09 Mon Sep 17 00:00:00 2001 From: fnguyen Date: Thu, 19 Dec 2024 15:08:28 -0500 Subject: [PATCH] Use the new ingest endpoint --- src/views/pages/authentication/AuthCheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/pages/authentication/AuthCheck.js b/src/views/pages/authentication/AuthCheck.js index 6d55b32..6b78cdd 100644 --- a/src/views/pages/authentication/AuthCheck.js +++ b/src/views/pages/authentication/AuthCheck.js @@ -19,7 +19,7 @@ function AuthCheck(props) { // Fire off the authorization check useEffect(() => { - fetch(`${INGEST_URL}/user/self_authorize`) + fetch(`${INGEST_URL}/user/me/authorize`) .then((request) => { if (request.ok) { return request.json();