mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 01:11:58 +03:00
17 lines
282 B
JavaScript
17 lines
282 B
JavaScript
import EntryActionTypes from '../constants/EntryActionTypes';
|
|
|
|
const initializeCore = () => ({
|
|
type: EntryActionTypes.CORE_INITIALIZE,
|
|
payload: {},
|
|
});
|
|
|
|
const logout = () => ({
|
|
type: EntryActionTypes.LOGOUT,
|
|
payload: {},
|
|
});
|
|
|
|
export default {
|
|
initializeCore,
|
|
logout,
|
|
};
|