mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 06:39:01 +02:00
Merge pull request #1717 from overleaf/as-decaffeinate-backend
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
This commit is contained in:
committed by
sharelatex
parent
d4eb71b525
commit
0ca81de78c
@@ -0,0 +1,38 @@
|
||||
/* 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
|
||||
Reference in New Issue
Block a user