@cadenza.io/service 1.9.15 → 1.9.16
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/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2758,8 +2758,12 @@ var DatabaseController = class _DatabaseController {
|
|
|
2758
2758
|
).then(
|
|
2759
2759
|
CadenzaService.createUniqueMetaTask(
|
|
2760
2760
|
"Join table tasks",
|
|
2761
|
-
() =>
|
|
2762
|
-
|
|
2761
|
+
(ctx, emit) => {
|
|
2762
|
+
console.log("JOINING TABLE TASKS");
|
|
2763
|
+
emit("meta.database.setup_done", {});
|
|
2764
|
+
return true;
|
|
2765
|
+
}
|
|
2766
|
+
)
|
|
2763
2767
|
)
|
|
2764
2768
|
)
|
|
2765
2769
|
)
|