forked from Ivasoft/mattermost-mobile
17 lines
522 B
JavaScript
17 lines
522 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {addChannelMember} from 'mattermost-redux/actions/channels';
|
|
|
|
export function handleAddChannelMembers(channelId, members) {
|
|
return async (dispatch, getState) => {
|
|
try {
|
|
const requests = members.map((m) => dispatch(addChannelMember(channelId, m, getState)));
|
|
|
|
return await Promise.all(requests);
|
|
} catch (error) {
|
|
return error;
|
|
}
|
|
};
|
|
}
|