diff options
author | Puyodead1 <puyodead@proton.me> | 2023-08-06 22:49:38 -0400 |
---|---|---|
committer | Puyodead1 <puyodead@proton.me> | 2023-08-06 22:51:34 -0400 |
commit | 033e2108e732093cbf51b141d6ba52452ce1f836 (patch) | |
tree | e229191e2ee72e11e98337203575d3030de4bb9d /src/api/middlewares | |
parent | generate openapi (diff) | |
download | server-033e2108e732093cbf51b141d6ba52452ce1f836.tar.xz |
Fix some linting warnings
Diffstat (limited to 'src/api/middlewares')
-rw-r--r-- | src/api/middlewares/Authentication.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/middlewares/Authentication.ts b/src/api/middlewares/Authentication.ts index 812888a3..9e41b453 100644 --- a/src/api/middlewares/Authentication.ts +++ b/src/api/middlewares/Authentication.ts @@ -16,7 +16,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { checkToken, Config, Rights } from "@spacebar/util"; +import { checkToken, Rights } from "@spacebar/util"; import * as Sentry from "@sentry/node"; import { NextFunction, Request, Response } from "express"; import { HTTPError } from "lambert-server"; |