overleaf/services/web/app/src/models/OauthAuthorizationCode.js

26 lines
614 B
JavaScript
Raw Normal View History

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' }
},
{
collection: 'oauthAuthorizationCodes'
}
)
exports.OauthAuthorizationCode = mongoose.model(
'OauthAuthorizationCode',
OauthAuthorizationCodeSchema
)
exports.OauthAuthorizationCodeSchema = OauthAuthorizationCodeSchema