blob: d5a128b46aa994d006cb969af1b8647351994f6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { JWTOptions } from "./Constants";
import jwt from "jsonwebtoken";
import Config from "./Config";
export function checkToken(token: string): Promise<any> {
return new Promise((res, rej) => {
jwt.verify(token, Config.getAll()?.api?.security?.jwtSecret, JWTOptions, (err, decoded: any) => {
if (err || !decoded) return rej("Invalid Token");
return res(decoded);
});
});
}
|