strapi-plugin-magic-mail 2.10.1 → 2.10.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/CHANGELOG.md +7 -0
- package/dist/server/index.js +6 -1
- package/dist/server/index.mjs +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.10.2](https://github.com/Schero94/Magic-Mail/compare/v2.10.1...v2.10.2) (2026-04-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **rbac:** make plugin::magic-mail.access visible in role editor ([63c80ce](https://github.com/Schero94/Magic-Mail/commit/63c80ce9351d455a96fb7b8637a4abdb5ed2c39e))
|
|
7
|
+
|
|
1
8
|
## [2.10.1](https://github.com/Schero94/Magic-Mail/compare/v2.10.0...v2.10.1) (2026-04-21)
|
|
2
9
|
|
|
3
10
|
|
package/dist/server/index.js
CHANGED
|
@@ -105,6 +105,11 @@ var register$1 = ({ strapi: strapi2 }) => {
|
|
|
105
105
|
section: "plugins",
|
|
106
106
|
displayName: "Access the MagicMail plugin",
|
|
107
107
|
uid: "access",
|
|
108
|
+
// Strapi 5's role editor only renders checkboxes for actions that
|
|
109
|
+
// belong to a subCategory. Without this field the permission
|
|
110
|
+
// exists but is invisible in Settings → Roles → Plugins →
|
|
111
|
+
// MagicMail, so admins cannot grant or revoke it.
|
|
112
|
+
subCategory: "General",
|
|
108
113
|
pluginName: "magic-mail"
|
|
109
114
|
}
|
|
110
115
|
]);
|
|
@@ -71626,7 +71631,7 @@ var oauth$1 = ({ strapi: strapi2 }) => ({
|
|
|
71626
71631
|
return account;
|
|
71627
71632
|
}
|
|
71628
71633
|
});
|
|
71629
|
-
const version = "2.10.
|
|
71634
|
+
const version = "2.10.1";
|
|
71630
71635
|
const require$$2 = {
|
|
71631
71636
|
version
|
|
71632
71637
|
};
|
package/dist/server/index.mjs
CHANGED
|
@@ -69,6 +69,11 @@ var register$1 = ({ strapi: strapi2 }) => {
|
|
|
69
69
|
section: "plugins",
|
|
70
70
|
displayName: "Access the MagicMail plugin",
|
|
71
71
|
uid: "access",
|
|
72
|
+
// Strapi 5's role editor only renders checkboxes for actions that
|
|
73
|
+
// belong to a subCategory. Without this field the permission
|
|
74
|
+
// exists but is invisible in Settings → Roles → Plugins →
|
|
75
|
+
// MagicMail, so admins cannot grant or revoke it.
|
|
76
|
+
subCategory: "General",
|
|
72
77
|
pluginName: "magic-mail"
|
|
73
78
|
}
|
|
74
79
|
]);
|
|
@@ -71590,7 +71595,7 @@ var oauth$1 = ({ strapi: strapi2 }) => ({
|
|
|
71590
71595
|
return account;
|
|
71591
71596
|
}
|
|
71592
71597
|
});
|
|
71593
|
-
const version = "2.10.
|
|
71598
|
+
const version = "2.10.1";
|
|
71594
71599
|
const require$$2 = {
|
|
71595
71600
|
version
|
|
71596
71601
|
};
|
package/package.json
CHANGED