mirror of
https://github.com/wassname/talk.git
synced 2026-07-31 12:50:48 +08:00
10 lines
540 B
JavaScript
10 lines
540 B
JavaScript
export const USER_LOGIN_REQUEST = 'USER_LOGIN_REQUEST';
|
|
export const USER_LOGIN_SUCCESS = 'USER_LOGIN_SUCCESS';
|
|
export const USER_LOGIN_FAILURE = 'USER_LOGIN_FAILURE';
|
|
export const USER_FACEBOOK_LOGIN_REQUEST = 'USER_FACEBOOK_LOGIN_REQUEST';
|
|
export const USER_FACEBOOK_SUCCESS = 'USER_FACEBOOK_SUCCESS';
|
|
export const USER_FACEBOOK_FAILURE = 'USER_FACEBOOK_FAILURE';
|
|
export const USER_LOGOUT_REQUEST = 'USER_LOGOUT_REQUEST';
|
|
export const USER_LOGOUT_SUCCESS = 'USER_LOGOUT_SUCCESS';
|
|
export const USER_LOGOUT_FAILURE = 'USER_LOGOUT_FAILURE';
|