vanth/lib/actions/user.js

18 lines
384 B
JavaScript
Raw Normal View History

import * as ActionTools from 'vanth/actions/tools';
export function register(name, username, password) {
const payload = {
name : name,
password: password,
username: username,
}
return ActionTools.fetchAndDispatch(
'/user/',
'USER_REGISTER_BEGIN',
'USER_REGISTER_COMPLETE',
'USER_REGISTER_ERROR',
ActionTools.Methods.POST,
payload
);
}