2021-08-08 21:56:34 +05:30
|
|
|
import appDispatcher from '../dispatcher';
|
|
|
|
|
import cons from '../state/cons';
|
|
|
|
|
|
|
|
|
|
function toggleMarkdown() {
|
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
|
type: cons.actions.settings.TOGGLE_MARKDOWN,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-15 09:23:59 +05:30
|
|
|
function togglePeopleDrawer() {
|
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
|
type: cons.actions.settings.TOGGLE_PEOPLE_DRAWER,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-08 21:56:34 +05:30
|
|
|
export {
|
|
|
|
|
toggleMarkdown,
|
2021-11-15 09:23:59 +05:30
|
|
|
togglePeopleDrawer,
|
2021-08-08 21:56:34 +05:30
|
|
|
};
|