lms-sync 1.0.61 → 1.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -844,7 +844,7 @@ const server = {
|
|
|
844
844
|
if (newUser.length > 0) {
|
|
845
845
|
const createdUser = await Users.bulkCreate(newUser, {returning: true})
|
|
846
846
|
userIds = createdUser.map(_user => _user._id) // Remove const or let
|
|
847
|
-
createdCounter += newUser.length
|
|
847
|
+
// createdCounter += newUser.length
|
|
848
848
|
newUser.forEach((user, index) => {
|
|
849
849
|
// logger.info(`${index + 1}/${index + 1}: New Instructor User Record Created: [${user.email} - ${user.password} ${user.temporaryPassword}] - ${user.lastName}, ${user.firstName} ${user.middleName} ${user.adminScopes}`)
|
|
850
850
|
});
|
|
@@ -1982,7 +1982,7 @@ const server = {
|
|
|
1982
1982
|
if (newUser.length > 0) {
|
|
1983
1983
|
const createdUser = await Users.bulkCreate(newUser, {returning: true})
|
|
1984
1984
|
userIds = createdUser.map(_user => _user._id) // Remove const or let
|
|
1985
|
-
createdCounter += newUser.length
|
|
1985
|
+
// createdCounter += newUser.length
|
|
1986
1986
|
newUser.forEach((user, index) => {
|
|
1987
1987
|
// logger.info(`${index + 1}/${index + 1}: New Student User Record Created: [${user.email} - ${user.password} ${user.temporaryPassword}] - ${user.lastName}, ${user.firstName} ${user.middleName} ${user.adminScopes}`)
|
|
1988
1988
|
});
|