mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
34 lines
916 B
JavaScript
34 lines
916 B
JavaScript
|
const mongoose = require('mongoose')
|
||
|
const Settings = require('settings-sharelatex')
|
||
|
|
||
|
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'
|
||
|
}
|
||
|
)
|
||
|
|
||
|
const conn = mongoose.createConnection(Settings.mongo.url, {
|
||
|
server: { poolSize: Settings.mongo.poolSize || 10 },
|
||
|
config: { autoIndex: false }
|
||
|
})
|
||
|
|
||
|
const OauthAuthorizationCode = conn.model(
|
||
|
'OauthAuthorizationCode',
|
||
|
OauthAuthorizationCodeSchema
|
||
|
)
|
||
|
|
||
|
mongoose.model('OauthAuthorizationCode', OauthAuthorizationCodeSchema)
|
||
|
exports.OauthAuthorizationCode = OauthAuthorizationCode
|
||
|
exports.OauthAuthorizationCodeSchema = OauthAuthorizationCodeSchema
|