mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 10:10:08 +02:00
[Web] Enable PKCE flows for Oauth server GitOrigin-RevId: e9a61596ed64e2be8b038b35eb8ea3e21b772e97
29 lines
697 B
JavaScript
29 lines
697 B
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
|
|
const { Schema } = mongoose
|
|
const { ObjectId } = Schema
|
|
|
|
const OauthAuthorizationCodeSchema = new Schema(
|
|
{
|
|
authorizationCode: String,
|
|
expiresAt: Date,
|
|
oauthApplication_id: { type: ObjectId, ref: 'OauthApplication' },
|
|
redirectUri: String,
|
|
scope: String,
|
|
user_id: { type: ObjectId, ref: 'User' },
|
|
codeChallenge: String,
|
|
codeChallengeMethod: String,
|
|
},
|
|
{
|
|
collection: 'oauthAuthorizationCodes',
|
|
minimize: false,
|
|
}
|
|
)
|
|
|
|
exports.OauthAuthorizationCode = mongoose.model(
|
|
'OauthAuthorizationCode',
|
|
OauthAuthorizationCodeSchema
|
|
)
|
|
|
|
exports.OauthAuthorizationCodeSchema = OauthAuthorizationCodeSchema
|