2025-07-19 03:30:44 +08:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2025 QuantumNous
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
|
|
|
*/
|
|
|
|
|
|
2023-04-22 20:39:27 +08:00
|
|
|
export const userConstants = {
|
2024-03-23 21:24:39 +08:00
|
|
|
REGISTER_REQUEST: 'USERS_REGISTER_REQUEST',
|
|
|
|
|
REGISTER_SUCCESS: 'USERS_REGISTER_SUCCESS',
|
|
|
|
|
REGISTER_FAILURE: 'USERS_REGISTER_FAILURE',
|
2023-04-22 20:39:27 +08:00
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
LOGIN_REQUEST: 'USERS_LOGIN_REQUEST',
|
|
|
|
|
LOGIN_SUCCESS: 'USERS_LOGIN_SUCCESS',
|
|
|
|
|
LOGIN_FAILURE: 'USERS_LOGIN_FAILURE',
|
2023-04-22 20:39:27 +08:00
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
LOGOUT: 'USERS_LOGOUT',
|
2023-04-22 20:39:27 +08:00
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
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',
|
2023-04-22 20:39:27 +08:00
|
|
|
};
|