export const APP_INIT = 'app-init'; export const AUTHENTICATED = 'authenticated'; export const LOGOUT = 'logout'; export const WORKSPACE_CHANGING = 'ws-changing'; export const WORKSPACE_CHANGE = 'ws-change'; export const CHANGE_LANG = 'change-lang'; export const ERROR = 'error'; // called when a crud view starts or ends export const CRUD_BEGIN = 'crud-begin'; export const CRUD_END = 'crud-end'; // crud events export const DOC_CREATE = 'doc-create'; export const DOC_UPDATE = 'doc-update'; export const DOC_DELETE = 'doc-delete'; // show messages export const SHOW_MESSAGE = 'show-message';