mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 23:27:13 +00:00
Fix a problem with the order of module initialization
This commit is contained in:
parent
a1f1c25294
commit
4e86a03b46
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,6 @@ Settings = require("settings-sharelatex")
|
|||
logger = require("logger-sharelatex")
|
||||
ObjectId = require('mongoose').Types.ObjectId
|
||||
ReferalAllocator = require("../Referal/ReferalAllocator")
|
||||
Modules = require '../../infrastructure/Modules'
|
||||
|
||||
oneMonthInSeconds = 60 * 60 * 24 * 30
|
||||
|
||||
|
@ -108,6 +107,7 @@ module.exports = SubscriptionUpdater =
|
|||
groupSubscription: (cb)->
|
||||
SubscriptionLocator.getGroupSubscriptionMemberOf user_id, cb
|
||||
overleafPlanCode: (cb) ->
|
||||
Modules = require '../../infrastructure/Modules'
|
||||
Modules.hooks.fire 'getOverleafPlanCode', user_id, cb
|
||||
async.series jobs, (err, results)->
|
||||
if err?
|
||||
|
|
Loading…
Reference in a new issue