Rocket.Chat.ReactNative/app/actions/pinnedMessages.js

37 lines
601 B
JavaScript

import * as types from './actionsTypes';
export function openPinnedMessages(rid, limit) {
return {
type: types.PINNED_MESSAGES.OPEN,
rid,
limit
};
}
export function readyPinnedMessages() {
return {
type: types.PINNED_MESSAGES.READY
};
}
export function closePinnedMessages() {
return {
type: types.PINNED_MESSAGES.CLOSE
};
}
export function pinnedMessagesReceived(messages) {
return {
type: types.PINNED_MESSAGES.MESSAGES_RECEIVED,
messages
};
}
export function pinnedMessageUnpinned(messageId) {
return {
type: types.PINNED_MESSAGES.MESSAGE_UNPINNED,
messageId
};
}