summaryrefslogtreecommitdiffstats
path: root/web/react/utils/async_client.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/utils/async_client.jsx')
-rw-r--r--web/react/utils/async_client.jsx48
1 files changed, 24 insertions, 24 deletions
diff --git a/web/react/utils/async_client.jsx b/web/react/utils/async_client.jsx
index 7cada98b7..d5fc10b8f 100644
--- a/web/react/utils/async_client.jsx
+++ b/web/react/utils/async_client.jsx
@@ -18,7 +18,7 @@ var callTracker = {};
export function dispatchError(err, method) {
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_ERROR,
+ type: ActionTypes.RECEIVED_ERROR,
err: err,
method: method
});
@@ -71,7 +71,7 @@ export function getChannels(checkVersion) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_CHANNELS,
+ type: ActionTypes.RECEIVED_CHANNELS,
channels: data.channels,
members: data.members
});
@@ -99,7 +99,7 @@ export function getChannel(id) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_CHANNEL,
+ type: ActionTypes.RECEIVED_CHANNEL,
channel: data.channel,
member: data.member
});
@@ -156,7 +156,7 @@ export function getMoreChannels(force) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_MORE_CHANNELS,
+ type: ActionTypes.RECEIVED_MORE_CHANNELS,
channels: data.channels,
members: data.members
});
@@ -195,7 +195,7 @@ export function getChannelExtraInfo(id, memberLimit) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_CHANNEL_EXTRA_INFO,
+ type: ActionTypes.RECEIVED_CHANNEL_EXTRA_INFO,
extra_info: data
});
},
@@ -222,7 +222,7 @@ export function getProfiles() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_PROFILES,
+ type: ActionTypes.RECEIVED_PROFILES,
profiles: data
});
},
@@ -249,7 +249,7 @@ export function getSessions() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SESSIONS,
+ type: ActionTypes.RECEIVED_SESSIONS,
sessions: data
});
},
@@ -276,7 +276,7 @@ export function getAudits() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_AUDITS,
+ type: ActionTypes.RECEIVED_AUDITS,
audits: data
});
},
@@ -302,7 +302,7 @@ export function getLogs() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_LOGS,
+ type: ActionTypes.RECEIVED_LOGS,
logs: data
});
},
@@ -328,7 +328,7 @@ export function getServerAudits() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SERVER_AUDITS,
+ type: ActionTypes.RECEIVED_SERVER_AUDITS,
audits: data
});
},
@@ -354,7 +354,7 @@ export function getConfig() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_CONFIG,
+ type: ActionTypes.RECEIVED_CONFIG,
config: data
});
},
@@ -380,7 +380,7 @@ export function getAllTeams() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_ALL_TEAMS,
+ type: ActionTypes.RECEIVED_ALL_TEAMS,
teams: data
});
},
@@ -409,7 +409,7 @@ export function findTeams(email) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_TEAMS,
+ type: ActionTypes.RECEIVED_TEAMS,
teams: data
});
},
@@ -437,7 +437,7 @@ export function search(terms) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SEARCH,
+ type: ActionTypes.RECEIVED_SEARCH,
results: data
});
},
@@ -489,7 +489,7 @@ export function getPostsPage(id, maxPosts) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POSTS,
+ type: ActionTypes.RECEIVED_POSTS,
id: channelId,
before: true,
numRequested: numPosts,
@@ -539,7 +539,7 @@ export function getPosts(id) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POSTS,
+ type: ActionTypes.RECEIVED_POSTS,
id: channelId,
before: true,
numRequested: Constants.POST_CHUNK_SIZE,
@@ -578,7 +578,7 @@ export function getPostsBefore(postId, offset, numPost) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POSTS,
+ type: ActionTypes.RECEIVED_POSTS,
id: channelId,
before: true,
numRequested: numPost,
@@ -617,7 +617,7 @@ export function getPostsAfter(postId, offset, numPost) {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POSTS,
+ type: ActionTypes.RECEIVED_POSTS,
id: channelId,
before: false,
numRequested: numPost,
@@ -650,7 +650,7 @@ export function getMe() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_ME,
+ type: ActionTypes.RECEIVED_ME,
me: data
});
},
@@ -685,7 +685,7 @@ export function getStatuses() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_STATUSES,
+ type: ActionTypes.RECEIVED_STATUSES,
statuses: data
});
},
@@ -711,7 +711,7 @@ export function getMyTeam() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_TEAM,
+ type: ActionTypes.RECEIVED_TEAM,
team: data
});
},
@@ -737,7 +737,7 @@ export function getAllPreferences() {
}
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_PREFERENCES,
+ type: ActionTypes.RECEIVED_PREFERENCES,
preferences: data
});
},
@@ -754,7 +754,7 @@ export function savePreferences(preferences, success, error) {
(data, textStatus, xhr) => {
if (xhr.status !== 304) {
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_PREFERENCES,
+ type: ActionTypes.RECEIVED_PREFERENCES,
preferences
});
}
@@ -821,7 +821,7 @@ export function getFileInfo(filename) {
callTracker[callName] = 0;
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_FILE_INFO,
+ type: ActionTypes.RECEIVED_FILE_INFO,
filename,
info: data
});