From 69e62c1e6e9c746a49aec88cfbdae7064a8dc556 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 10 Mar 2025 20:17:19 -0500 Subject: [PATCH] Rename to /api/next-account --- components/account.js | 2 +- pages/api/{signout.js => next-account.js} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename pages/api/{signout.js => next-account.js} (98%) diff --git a/components/account.js b/components/account.js index e912c90b..74f59261 100644 --- a/components/account.js +++ b/components/account.js @@ -51,7 +51,7 @@ export const AccountProvider = ({ children }) => { }, []) const multiAuthSignout = useCallback(async () => { - const { status } = await fetch('/api/signout', { credentials: 'include' }) + const { status } = await fetch('/api/next-account', { credentials: 'include' }) // if status is 302, this means the server was able to switch us to the next available account // and the current account was simply removed from the list of available accounts including the corresponding JWT. const switchSuccess = status === 302 diff --git a/pages/api/signout.js b/pages/api/next-account.js similarity index 98% rename from pages/api/signout.js rename to pages/api/next-account.js index 6e462e55..cc9d1421 100644 --- a/pages/api/signout.js +++ b/pages/api/next-account.js @@ -1,5 +1,5 @@ import * as cookie from 'cookie' -import { datePivot } from '../../lib/time' +import { datePivot } from '@/lib/time' /** * @param {NextApiRequest} req