Added composeClear function in redux

• Added:
- composeClear function in redux
This commit is contained in:
mgabdev
2020-07-14 00:19:02 -05:00
parent 35fdaf0208
commit 91d5a81b72
2 changed files with 10 additions and 0 deletions

View File

@@ -68,6 +68,8 @@ export const COMPOSE_SCHEDULED_AT_CHANGE = 'COMPOSE_SCHEDULED_AT_CHANGE';
export const COMPOSE_RICH_TEXT_EDITOR_CONTROLS_VISIBILITY = 'COMPOSE_RICH_TEXT_EDITOR_CONTROLS_VISIBILITY'
export const COMPOSE_CLEAR = 'COMPOSE_CLEAR'
const messages = defineMessages({
uploadErrorLimit: { id: 'upload_error.limit', defaultMessage: 'File upload limit exceeded.' },
uploadErrorPoll: { id: 'upload_error.poll', defaultMessage: 'File upload not allowed with polls.' },
@@ -335,6 +337,12 @@ export function submitComposeSuccess(status) {
};
};
export function clearCompose() {
return {
type: COMPOSE_CLEAR,
};
};
export function submitComposeFail(error) {
return {
type: COMPOSE_SUBMIT_FAIL,