mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #12912 from overleaf/em-server-pro-oauth-indexes
Add missing OAuth indexes in ServerPro GitOrigin-RevId: 6cd37c1d884d30d5ec040f7d60961c8854e51273
This commit is contained in:
parent
0c54e6605b
commit
d5242379f2
1 changed files with 47 additions and 0 deletions
|
@ -0,0 +1,47 @@
|
|||
const Helpers = require('./lib/helpers')
|
||||
|
||||
exports.tags = ['server-pro']
|
||||
|
||||
const OAUTH_APPLICATIONS_INDEX = {
|
||||
key: { id: 1 },
|
||||
unique: true,
|
||||
name: 'id_1',
|
||||
}
|
||||
|
||||
const OAUTH_ACCESS_TOKENS_INDEX = {
|
||||
key: { accessToken: 1 },
|
||||
unique: true,
|
||||
name: 'accessToken_1',
|
||||
}
|
||||
|
||||
const OAUTH_AUTHORIZATION_CODES_INDEX = {
|
||||
key: { authorizationCode: 1 },
|
||||
unique: true,
|
||||
name: 'authorizationCode_1',
|
||||
}
|
||||
|
||||
exports.migrate = async client => {
|
||||
const { db } = client
|
||||
await Helpers.addIndexesToCollection(db.oauthApplications, [
|
||||
OAUTH_APPLICATIONS_INDEX,
|
||||
])
|
||||
await Helpers.addIndexesToCollection(db.oauthAccessTokens, [
|
||||
OAUTH_ACCESS_TOKENS_INDEX,
|
||||
])
|
||||
await Helpers.addIndexesToCollection(db.oauthAuthorizationCodes, [
|
||||
OAUTH_AUTHORIZATION_CODES_INDEX,
|
||||
])
|
||||
}
|
||||
|
||||
exports.rollback = async client => {
|
||||
const { db } = client
|
||||
await Helpers.dropIndexesFromCollection(db.oauthApplications, [
|
||||
OAUTH_APPLICATIONS_INDEX,
|
||||
])
|
||||
await Helpers.dropIndexesFromCollection(db.oauthAccessTokens, [
|
||||
OAUTH_ACCESS_TOKENS_INDEX,
|
||||
])
|
||||
await Helpers.dropIndexesFromCollection(db.oauthAuthorizationCodes, [
|
||||
OAUTH_AUTHORIZATION_CODES_INDEX,
|
||||
])
|
||||
}
|
Loading…
Reference in a new issue