From db1fee73c8ddbb5bc1aba539f04ee2d23e0b3c52 Mon Sep 17 00:00:00 2001 From: Jimmy Domagala-Tang Date: Mon, 27 Jan 2025 09:45:53 -0500 Subject: [PATCH] Merge pull request #21838 from overleaf/jdt-ae-wf-codec-challenge [Web] Enable PKCE flows for Oauth server GitOrigin-RevId: e9a61596ed64e2be8b038b35eb8ea3e21b772e97 --- services/web/app/src/models/OauthAuthorizationCode.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/web/app/src/models/OauthAuthorizationCode.js b/services/web/app/src/models/OauthAuthorizationCode.js index 2cf0204c4f..6b9822377f 100644 --- a/services/web/app/src/models/OauthAuthorizationCode.js +++ b/services/web/app/src/models/OauthAuthorizationCode.js @@ -11,6 +11,8 @@ const OauthAuthorizationCodeSchema = new Schema( redirectUri: String, scope: String, user_id: { type: ObjectId, ref: 'User' }, + codeChallenge: String, + codeChallengeMethod: String, }, { collection: 'oauthAuthorizationCodes',