Move instances of Client.updateUserNotifyProps() in components to an action (#5156)

Этот коммит содержится в:
Saturnino Abril
2017-01-23 18:03:57 +09:00
коммит произвёл George Goldberg
родитель 9b0ac63133
Коммит efbaa1eb03
2 изменённых файлов: 21 добавлений и 4 удалений

Просмотреть файл

@@ -453,6 +453,24 @@ export function generateMfaSecret(success, error) {
);
}
export function updateUserNotifyProps(data, success, error) {
Client.updateUserNotifyProps(
data,
() => {
AsyncClient.getMe();
if (success) {
success();
}
},
(err) => {
if (error) {
error(err);
}
}
);
}
export function updateUserRoles(userId, newRoles, success, error) {
Client.updateUserRoles(
userId,