From ea41892fef208b10c1bb322de7683c39ebab3dd5 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 5 Feb 2021 22:01:01 +0100 Subject: :wrench: build --- src/util/Constants.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/util/Constants.ts (limited to 'src/util/Constants.ts') diff --git a/src/util/Constants.ts b/src/util/Constants.ts new file mode 100644 index 00000000..808d234b --- /dev/null +++ b/src/util/Constants.ts @@ -0,0 +1,3 @@ +import { VerifyOptions } from "jsonwebtoken"; + +export const JWTOptions: VerifyOptions = { algorithms: ["HS256"] }; -- cgit 1.5.1