strapi-custom-auth 1.2.23 → 1.2.24
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/server/index.js +1 -0
- package/dist/server/index.mjs +1 -0
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -3279,6 +3279,7 @@ async function microsoftSignIn(ctx) {
|
|
|
3279
3279
|
return ctx.send({}, 302);
|
|
3280
3280
|
}
|
|
3281
3281
|
async function microsoftSignInCallback(ctx) {
|
|
3282
|
+
console.log("[STRAPI-CUSTOM-AUTH] Enter");
|
|
3282
3283
|
const config2 = configValidation();
|
|
3283
3284
|
const userService = strapi.service("admin::user");
|
|
3284
3285
|
const tokenService = strapi.service("admin::token");
|
package/dist/server/index.mjs
CHANGED
|
@@ -3264,6 +3264,7 @@ async function microsoftSignIn(ctx) {
|
|
|
3264
3264
|
return ctx.send({}, 302);
|
|
3265
3265
|
}
|
|
3266
3266
|
async function microsoftSignInCallback(ctx) {
|
|
3267
|
+
console.log("[STRAPI-CUSTOM-AUTH] Enter");
|
|
3267
3268
|
const config2 = configValidation();
|
|
3268
3269
|
const userService = strapi.service("admin::user");
|
|
3269
3270
|
const tokenService = strapi.service("admin::token");
|
package/package.json
CHANGED