Update rawUsers to allUsers per /users API change
parent
10c81fcf05
commit
0e65ce318e
|
@ -58,7 +58,7 @@ class AllUsersPage extends Component {
|
|||
|
||||
await Promise.all([
|
||||
loadOrganizationsAsync(links.organizations),
|
||||
loadUsersAsync(links.rawUsers),
|
||||
loadUsersAsync(links.allUsers),
|
||||
])
|
||||
|
||||
this.setState({isLoading: false})
|
||||
|
|
|
@ -62,7 +62,7 @@ export const getMeAsync = ({shouldResetMe = false} = {}) => async dispatch => {
|
|||
data: me,
|
||||
auth,
|
||||
users,
|
||||
rawUsers,
|
||||
allUsers,
|
||||
meLink,
|
||||
config,
|
||||
external,
|
||||
|
@ -83,7 +83,7 @@ export const getMeAsync = ({shouldResetMe = false} = {}) => async dispatch => {
|
|||
linksReceived({
|
||||
external,
|
||||
users,
|
||||
rawUsers,
|
||||
allUsers,
|
||||
organizations,
|
||||
me: meLink,
|
||||
config,
|
||||
|
|
|
@ -15,7 +15,7 @@ const generateResponseWithLinks = (response, newLinks) => {
|
|||
logout,
|
||||
external,
|
||||
users,
|
||||
rawUsers,
|
||||
allUsers,
|
||||
organizations,
|
||||
me: meLink,
|
||||
config,
|
||||
|
@ -28,7 +28,7 @@ const generateResponseWithLinks = (response, newLinks) => {
|
|||
logoutLink: logout,
|
||||
external,
|
||||
users,
|
||||
rawUsers,
|
||||
allUsers,
|
||||
organizations,
|
||||
meLink,
|
||||
config,
|
||||
|
|
Loading…
Reference in New Issue