Update rawUsers to allUsers per /users API change

pull/2733/head
Jared Scheib 2018-01-17 15:13:09 -08:00
parent 10c81fcf05
commit 0e65ce318e
3 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ class AllUsersPage extends Component {
await Promise.all([
loadOrganizationsAsync(links.organizations),
loadUsersAsync(links.rawUsers),
loadUsersAsync(links.allUsers),
])
this.setState({isLoading: false})

View File

@ -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,

View File

@ -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,