mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-03-22 12:33:11 -04:00
10 lines
230 B
TypeScript
Executable File
10 lines
230 B
TypeScript
Executable File
import { dispatcher } from '../dispatcher';
|
|
|
|
export function load_author_data() {
|
|
dispatcher.dispatch({ type: 'LOAD_AUTHOR_DATA' });
|
|
}
|
|
|
|
export function remove_profile() {
|
|
dispatcher.dispatch({ type: 'REMOVE_PROFILE' });
|
|
}
|