strapi-plugin-magic-mail 2.3.10 → 2.3.11
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/admin/index.js +4 -4
- package/dist/admin/index.mjs +4 -4
- package/dist/server/index.js +1 -1
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
package/dist/admin/index.js
CHANGED
|
@@ -42,7 +42,7 @@ const prefixPluginTranslations = (data, pluginId2) => {
|
|
|
42
42
|
const index = {
|
|
43
43
|
register(app) {
|
|
44
44
|
app.addMenuLink({
|
|
45
|
-
to:
|
|
45
|
+
to: `plugins/${pluginId}`,
|
|
46
46
|
icon: PluginIcon,
|
|
47
47
|
intlLabel: {
|
|
48
48
|
id: `${pluginId}.plugin.name`,
|
|
@@ -54,7 +54,7 @@ const index = {
|
|
|
54
54
|
{
|
|
55
55
|
intlLabel: { id: `${pluginId}.settings.section`, defaultMessage: "MagicMail" },
|
|
56
56
|
id: pluginId,
|
|
57
|
-
to:
|
|
57
|
+
to: pluginId
|
|
58
58
|
},
|
|
59
59
|
[
|
|
60
60
|
{
|
|
@@ -63,7 +63,7 @@ const index = {
|
|
|
63
63
|
defaultMessage: "Upgrade"
|
|
64
64
|
},
|
|
65
65
|
id: "upgrade",
|
|
66
|
-
to:
|
|
66
|
+
to: `${pluginId}/upgrade`,
|
|
67
67
|
Component: () => Promise.resolve().then(() => require("../_chunks/LicensePage-Bg72gy8w.js"))
|
|
68
68
|
},
|
|
69
69
|
{
|
|
@@ -72,7 +72,7 @@ const index = {
|
|
|
72
72
|
defaultMessage: "License Details"
|
|
73
73
|
},
|
|
74
74
|
id: "license",
|
|
75
|
-
to:
|
|
75
|
+
to: `${pluginId}/license`,
|
|
76
76
|
Component: () => Promise.resolve().then(() => require("../_chunks/Settings-BSFLpt0H.js"))
|
|
77
77
|
}
|
|
78
78
|
]
|
package/dist/admin/index.mjs
CHANGED
|
@@ -41,7 +41,7 @@ const prefixPluginTranslations = (data, pluginId2) => {
|
|
|
41
41
|
const index = {
|
|
42
42
|
register(app) {
|
|
43
43
|
app.addMenuLink({
|
|
44
|
-
to:
|
|
44
|
+
to: `plugins/${pluginId}`,
|
|
45
45
|
icon: PluginIcon,
|
|
46
46
|
intlLabel: {
|
|
47
47
|
id: `${pluginId}.plugin.name`,
|
|
@@ -53,7 +53,7 @@ const index = {
|
|
|
53
53
|
{
|
|
54
54
|
intlLabel: { id: `${pluginId}.settings.section`, defaultMessage: "MagicMail" },
|
|
55
55
|
id: pluginId,
|
|
56
|
-
to:
|
|
56
|
+
to: pluginId
|
|
57
57
|
},
|
|
58
58
|
[
|
|
59
59
|
{
|
|
@@ -62,7 +62,7 @@ const index = {
|
|
|
62
62
|
defaultMessage: "Upgrade"
|
|
63
63
|
},
|
|
64
64
|
id: "upgrade",
|
|
65
|
-
to:
|
|
65
|
+
to: `${pluginId}/upgrade`,
|
|
66
66
|
Component: () => import("../_chunks/LicensePage-ndUhjynY.mjs")
|
|
67
67
|
},
|
|
68
68
|
{
|
|
@@ -71,7 +71,7 @@ const index = {
|
|
|
71
71
|
defaultMessage: "License Details"
|
|
72
72
|
},
|
|
73
73
|
id: "license",
|
|
74
|
-
to:
|
|
74
|
+
to: `${pluginId}/license`,
|
|
75
75
|
Component: () => import("../_chunks/Settings-Ca5UE3c1.mjs")
|
|
76
76
|
}
|
|
77
77
|
]
|
package/dist/server/index.js
CHANGED
package/dist/server/index.mjs
CHANGED
package/package.json
CHANGED