propro-utils 1.5.26 → 1.5.27

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "propro-utils",
3
- "version": "1.5.26",
3
+ "version": "1.5.27",
4
4
  "description": "Auth middleware for propro-auth",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -334,7 +334,8 @@ class AuthMiddleware {
334
334
  pathRequiresAccessToken = path => {
335
335
  return (
336
336
  !path.includes('/api/v1/auth/login') &&
337
- !path.includes('/api/v1/auth/signup')
337
+ !path.includes('/api/v1/auth/signup') &&
338
+ !path.includes('/api/v1/send-magic-link')
338
339
  );
339
340
  };
340
341