@docbrasil/api-systemmanager 1.1.79 → 1.1.80

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.
@@ -125,7 +125,7 @@ class AdminUser {
125
125
  */
126
126
  _basePath() {
127
127
  if (this._orgId) {
128
- return `/api/organizations/${this._orgId}/adminusers`;
128
+ return `/organizations/${this._orgId}/adminusers`;
129
129
  }
130
130
  return '/admin/users';
131
131
  }
@@ -139,7 +139,7 @@ class AdminUser {
139
139
  */
140
140
  _orgPath(orgId) {
141
141
  if (this._orgId) {
142
- return `/api/organizations/${orgId}/adminusers`;
142
+ return `/organizations/${orgId}/adminusers`;
143
143
  }
144
144
  return `/admin/organizations/${orgId}`;
145
145
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@docbrasil/api-systemmanager",
3
3
  "description": "Module API System Manager",
4
- "version": "1.1.79",
4
+ "version": "1.1.80",
5
5
  "scripts": {
6
6
  "htmldoc": "rm -rf docs && jsdoc api/** -d docs -t ./node_modules/better-docs",
7
7
  "doc": "rm -rf doc && mkdir doc && jsdoc2md api/**/* api/* > doc/api.md",