1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00

🐛 fix checktoken

This commit is contained in:
Flam3rboy 2021-05-23 01:23:03 +02:00
parent ef4f32e597
commit 5000f8e518
2 changed files with 4 additions and 5 deletions

View File

@ -4,7 +4,7 @@ export * as Constants from "./util/Constants";
export * from "./models/index";
export * from "./util/index";
import Config, { DefaultOptions } from "./util/Config";
import Config from "./util/Config";
import db, { MongooseCache, toObject } from "./util/Database";
export { Config, db, DefaultOptions, MongooseCache, toObject };
export { Config, db, MongooseCache, toObject };

View File

@ -1,10 +1,9 @@
import { JWTOptions } from "./Constants";
import jwt from "jsonwebtoken";
import Config from "./Config";
export function checkToken(token: string): Promise<any> {
export function checkToken(token: string, jwtSecret: string): Promise<any> {
return new Promise((res, rej) => {
jwt.verify(token, Config.getAll()?.api?.security?.jwtSecret, JWTOptions, (err, decoded: any) => {
jwt.verify(token, jwtSecret, JWTOptions, (err, decoded: any) => {
if (err || !decoded) return rej("Invalid Token");
return res(decoded);