0029313775
* also extract registration logic to users.js module
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
export const SIGN_UP = {
|
|
SUCCESS: 'SIGN_UP_SUCCESS',
|
|
FAILURE: 'SIGN_UP_FAILURE',
|
|
PENDING: 'SIGN_UP_PENDING',
|
|
isPending: 'sign_up_pending',
|
|
errors: 'sign_up_errors'
|
|
}
|