| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- 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
- */
- 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',
- };
|