mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 22:29:01 +02:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
/* eslint-disable
|
|
max-len,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
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
|