mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fix typo
GitOrigin-RevId: e0d95acb0c871558ed50b7456ca5783c893639fb
This commit is contained in:
parent
59c26be6f2
commit
73d9d87b4d
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ const Path = require('path')
|
|||
const metrics = require('metrics-sharelatex')
|
||||
const NotificationsBuilder = require('../Notifications/NotificationsBuilder')
|
||||
const AuthenticationController = require('../Authentication/AuthenticationController')
|
||||
const TdpsQueueManager = require('./TpdsQueueManager').promises
|
||||
const TpdsQueueManager = require('./TpdsQueueManager').promises
|
||||
|
||||
module.exports = {
|
||||
// mergeUpdate and deleteUpdate are used by Dropbox, where the project is only passed as the name, as the
|
||||
|
@ -136,7 +136,7 @@ module.exports = {
|
|||
async getQueues(req, res, next) {
|
||||
const userId = AuthenticationController.getLoggedInUserId(req)
|
||||
try {
|
||||
res.json(await TdpsQueueManager.getQueues(userId))
|
||||
res.json(await TpdsQueueManager.getQueues(userId))
|
||||
} catch (err) {
|
||||
next(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue