@saltcorn/server 0.9.1 → 0.9.2
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/package.json +8 -8
- package/routes/plugins.js +2 -0
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saltcorn/server",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Server app for Saltcorn, open-source no-code platform",
|
|
5
5
|
"homepage": "https://saltcorn.com",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@aws-sdk/client-s3": "^3.451.0",
|
|
10
|
-
"@saltcorn/base-plugin": "0.9.
|
|
11
|
-
"@saltcorn/builder": "0.9.
|
|
12
|
-
"@saltcorn/data": "0.9.
|
|
13
|
-
"@saltcorn/admin-models": "0.9.
|
|
14
|
-
"@saltcorn/filemanager": "0.9.
|
|
15
|
-
"@saltcorn/markup": "0.9.
|
|
16
|
-
"@saltcorn/sbadmin2": "0.9.
|
|
10
|
+
"@saltcorn/base-plugin": "0.9.2",
|
|
11
|
+
"@saltcorn/builder": "0.9.2",
|
|
12
|
+
"@saltcorn/data": "0.9.2",
|
|
13
|
+
"@saltcorn/admin-models": "0.9.2",
|
|
14
|
+
"@saltcorn/filemanager": "0.9.2",
|
|
15
|
+
"@saltcorn/markup": "0.9.2",
|
|
16
|
+
"@saltcorn/sbadmin2": "0.9.2",
|
|
17
17
|
"@socket.io/cluster-adapter": "^0.2.1",
|
|
18
18
|
"@socket.io/sticky": "^1.0.1",
|
|
19
19
|
"adm-zip": "0.5.10",
|
package/routes/plugins.js
CHANGED
|
@@ -1243,6 +1243,8 @@ router.post(
|
|
|
1243
1243
|
}
|
|
1244
1244
|
await load_plugins.loadAndSaveNewPlugin(plugin, forceReInstall);
|
|
1245
1245
|
const plugin_module = getState().plugins[name];
|
|
1246
|
+
await getState().refresh_views();
|
|
1247
|
+
|
|
1246
1248
|
if (plugin_module && plugin_module.configuration_workflow) {
|
|
1247
1249
|
const plugin_db = await Plugin.findOne({ name });
|
|
1248
1250
|
req.flash(
|