From 4fcade16cbdabaad52ad854e080b82769c1ef133 Mon Sep 17 00:00:00 2001 From: Jimmy Domagala-Tang Date: Mon, 22 Apr 2024 08:03:03 -0700 Subject: [PATCH] Merge pull request #17888 from overleaf/jdt-async-tpr Async Await the third party references module GitOrigin-RevId: 58bbc4160cf00bf26b2cd2ea81659ba213f95294 --- services/web/app/src/infrastructure/Csrf.js | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/app/src/infrastructure/Csrf.js b/services/web/app/src/infrastructure/Csrf.js index 9a1ffb5b09..71fb3ac69c 100644 --- a/services/web/app/src/infrastructure/Csrf.js +++ b/services/web/app/src/infrastructure/Csrf.js @@ -108,6 +108,7 @@ class Csrf { Csrf.promises = { validateRequest: promisify(Csrf.validateRequest), + validateToken: promisify(Csrf.validateToken), } module.exports = Csrf