/verify-token --> /verify-signed-in
This commit is contained in:
parent
743ca20470
commit
a30425a069
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ const useSignedIn = () => {
|
||||||
const attemptSignIn = async () => {
|
const attemptSignIn = async () => {
|
||||||
// If header auth is enabled, the reverse proxy will add it between this fetch and the server.
|
// If header auth is enabled, the reverse proxy will add it between this fetch and the server.
|
||||||
// Otherwise, the token will be used.
|
// Otherwise, the token will be used.
|
||||||
const res = await fetch("/server-api/auth/verify-token", {
|
const res = await fetch("/server-api/auth/verify-signed-in", {
|
||||||
method: "GET",
|
method: "GET",
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
|
|
|
@ -147,7 +147,7 @@ function generateAccessToken(user: User) {
|
||||||
return token
|
return token
|
||||||
}
|
}
|
||||||
|
|
||||||
auth.get("/verify-token", jwt, async (req, res, next) => {
|
auth.get("/verify-signed-in", jwt, async (req, res, next) => {
|
||||||
try {
|
try {
|
||||||
res.status(200).json({
|
res.status(200).json({
|
||||||
message: "You are authenticated"
|
message: "You are authenticated"
|
||||||
|
|
Loading…
Reference in a new issue