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',