mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
33 lines
992 B
JavaScript
33 lines
992 B
JavaScript
// TODO: This file was created by bulk-decaffeinate.
|
|
// Sanity-check the conversion and remove this comment.
|
|
const mongoose = require('mongoose')
|
|
const Settings = require('settings-sharelatex')
|
|
|
|
const { Schema } = mongoose
|
|
const { ObjectId } = Schema
|
|
|
|
const OauthAccessTokenSchema = new Schema(
|
|
{
|
|
accessToken: String,
|
|
accessTokenExpiresAt: Date,
|
|
oauthApplication_id: { type: ObjectId, ref: 'OauthApplication' },
|
|
refreshToken: String,
|
|
refreshTokenExpiresAt: Date,
|
|
scope: String,
|
|
user_id: { type: ObjectId, ref: 'User' }
|
|
},
|
|
{
|
|
collection: 'oauthAccessTokens'
|
|
}
|
|
)
|
|
|
|
const conn = mongoose.createConnection(Settings.mongo.url, {
|
|
server: { poolSize: Settings.mongo.poolSize || 10 },
|
|
config: { autoIndex: false }
|
|
})
|
|
|
|
const OauthAccessToken = conn.model('OauthAccessToken', OauthAccessTokenSchema)
|
|
|
|
mongoose.model('OauthAccessToken', OauthAccessTokenSchema)
|
|
exports.OauthAccessToken = OauthAccessToken
|
|
exports.OauthAccessTokenSchema = OauthAccessTokenSchema
|