@urga-panel/ur-panels-core 1.0.8 → 1.0.9
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.
|
@@ -29,10 +29,9 @@ export class ProjectInfoService extends Service {
|
|
|
29
29
|
return { status: "success", message: "setup complete" };
|
|
30
30
|
}
|
|
31
31
|
async onStart() {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
// });
|
|
32
|
+
Object.keys(this.frontServices).forEach(async (tag) => {
|
|
33
|
+
await this.frontServices[tag].service.start();
|
|
34
|
+
});
|
|
36
35
|
return { status: "success", message: "started" };
|
|
37
36
|
}
|
|
38
37
|
async onStop() {
|
package/package.json
CHANGED
|
@@ -66,10 +66,9 @@ export abstract class ProjectInfoService extends Service {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
protected async onStart(): Promise<ServiceResponse> {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
// });
|
|
69
|
+
Object.keys(this.frontServices).forEach(async tag => {
|
|
70
|
+
await this.frontServices[tag].service.start();
|
|
71
|
+
});
|
|
73
72
|
return { status: "success", message: "started" };
|
|
74
73
|
}
|
|
75
74
|
|