payservedb 6.6.2 → 6.6.3
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.
- package/index.js +1 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -69,7 +69,6 @@ async function switchDB(dbName) {
|
|
|
69
69
|
// This maintains backward compatibility for existing services
|
|
70
70
|
const models = {
|
|
71
71
|
User: require("./src/models/user"),
|
|
72
|
-
AuditLog: require("./src/models/auditlog"),
|
|
73
72
|
Company: require("./src/models/company"),
|
|
74
73
|
Customer: require("./src/models/customer"),
|
|
75
74
|
FacilityEmailDetails: require("./src/models/email"),
|
|
@@ -273,5 +272,5 @@ module.exports = {
|
|
|
273
272
|
switchDB,
|
|
274
273
|
getModelFromDB,
|
|
275
274
|
initializeService,
|
|
276
|
-
...models,
|
|
275
|
+
...models,
|
|
277
276
|
};
|