Some checks failed
Publish Docker image (amd64, English) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (arm64) / Push Docker image to multiple registries (push) Has been cancelled
Linux Release / release (push) Has been cancelled
macOS Release / release (push) Has been cancelled
Windows Release / release (push) Has been cancelled
20 lines
574 B
JavaScript
20 lines
574 B
JavaScript
export const userConstants = {
|
|
REGISTER_REQUEST: 'USERS_REGISTER_REQUEST',
|
|
REGISTER_SUCCESS: 'USERS_REGISTER_SUCCESS',
|
|
REGISTER_FAILURE: 'USERS_REGISTER_FAILURE',
|
|
|
|
LOGIN_REQUEST: 'USERS_LOGIN_REQUEST',
|
|
LOGIN_SUCCESS: 'USERS_LOGIN_SUCCESS',
|
|
LOGIN_FAILURE: 'USERS_LOGIN_FAILURE',
|
|
|
|
LOGOUT: 'USERS_LOGOUT',
|
|
|
|
GETALL_REQUEST: 'USERS_GETALL_REQUEST',
|
|
GETALL_SUCCESS: 'USERS_GETALL_SUCCESS',
|
|
GETALL_FAILURE: 'USERS_GETALL_FAILURE',
|
|
|
|
DELETE_REQUEST: 'USERS_DELETE_REQUEST',
|
|
DELETE_SUCCESS: 'USERS_DELETE_SUCCESS',
|
|
DELETE_FAILURE: 'USERS_DELETE_FAILURE',
|
|
};
|