initialize editorialWorkflow state after config loaded & parsed

This commit is contained in:
Cássio Zen
2016-09-13 04:29:30 -03:00
parent 165c758bb9
commit 911e3f7077
3 changed files with 12 additions and 19 deletions

View File

@ -3,8 +3,6 @@ import { EDITORIAL_WORKFLOW } from '../constants/publishModes';
/*
* Contant Declarations
*/
export const INIT = 'init';
export const UNPUBLISHED_ENTRY_REQUEST = 'UNPUBLISHED_ENTRY_REQUEST';
export const UNPUBLISHED_ENTRY_SUCCESS = 'UNPUBLISHED_ENTRY_SUCCESS';
@ -55,16 +53,6 @@ function unpublishedEntriesFailed(error) {
};
}
/*
* Exported simple Action Creators
*/
export function init() {
return {
type: INIT
};
}
/*
* Exported Thunk Action Creators
*/