@mondaydotcomorg/monday-authorization 3.1.1-feature-bashanye-fix-platform-url.d268e4c → 3.1.1
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.
|
@@ -333,10 +333,10 @@ function createAuthorizationParams(resources, action) {
|
|
|
333
333
|
return params;
|
|
334
334
|
}
|
|
335
335
|
function getAuthorizeUrl() {
|
|
336
|
-
return
|
|
336
|
+
return '/internal_ms/authorization/authorize';
|
|
337
337
|
}
|
|
338
338
|
function getCanActionsInScopesUrl() {
|
|
339
|
-
return
|
|
339
|
+
return '/internal_ms/authorization/can_actions_in_scopes';
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
exports.AuthorizationService = AuthorizationService;
|
|
@@ -325,10 +325,10 @@ function createAuthorizationParams(resources, action) {
|
|
|
325
325
|
return params;
|
|
326
326
|
}
|
|
327
327
|
function getAuthorizeUrl() {
|
|
328
|
-
return
|
|
328
|
+
return '/internal_ms/authorization/authorize';
|
|
329
329
|
}
|
|
330
330
|
function getCanActionsInScopesUrl() {
|
|
331
|
-
return
|
|
331
|
+
return '/internal_ms/authorization/can_actions_in_scopes';
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
export { AuthorizationService, createAuthorizationParams, setIgniteClient, setRedisClient, setRequestFetchOptions };
|