authscape 1.0.92 → 1.0.94
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/.babelrc +2 -2
- package/index.js +1277 -1277
- package/package.json +1 -1
- package/src/index.js +12 -12
- package/src/services/apiService.js +1 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import React, { Component } from 'react';
|
|
2
|
-
|
|
3
|
-
export default class DummyComponent extends Component {
|
|
4
|
-
|
|
5
|
-
render () {
|
|
6
|
-
|
|
7
|
-
return (
|
|
8
|
-
<div>I am a dummy react npm module</div>
|
|
9
|
-
)
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
|
|
3
|
+
export default class DummyComponent extends Component {
|
|
4
|
+
|
|
5
|
+
render () {
|
|
6
|
+
|
|
7
|
+
return (
|
|
8
|
+
<div>I am a dummy react npm module</div>
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
}
|
|
12
|
+
|
|
13
13
|
}
|
|
@@ -209,7 +209,7 @@ export const apiService = (ctx = null) => {
|
|
|
209
209
|
if (accessToken)
|
|
210
210
|
{
|
|
211
211
|
let defaultOptions = await setupDefaultOptions(null);
|
|
212
|
-
const response = await instance.get('/UserManagement', defaultOptions);
|
|
212
|
+
const response = await instance.get('/UserManagement/get', defaultOptions);
|
|
213
213
|
if (response != null && response.status == 200)
|
|
214
214
|
{
|
|
215
215
|
return response.data;
|