29 lines
501 B
JavaScript
29 lines
501 B
JavaScript
import * as types from './actionsTypes';
|
|
|
|
export function openStarredMessages(rid) {
|
|
return {
|
|
type: types.STARRED_MESSAGES.OPEN,
|
|
rid
|
|
};
|
|
}
|
|
|
|
export function closeStarredMessages() {
|
|
return {
|
|
type: types.STARRED_MESSAGES.CLOSE
|
|
};
|
|
}
|
|
|
|
export function starredMessagesReceived(messages) {
|
|
return {
|
|
type: types.STARRED_MESSAGES.MESSAGES_RECEIVED,
|
|
messages
|
|
};
|
|
}
|
|
|
|
export function starredMessageUnstarred(messageId) {
|
|
return {
|
|
type: types.STARRED_MESSAGES.MESSAGE_UNSTARRED,
|
|
messageId
|
|
};
|
|
}
|