expressServer/config/errorMessages.js

27 lines
890 B
JavaScript

module.exports = {
user: {
not_found: 'User not found',
already_exists: 'User already exists',
created: 'User created',
updated: 'User updated',
deleted: 'User deleted',
not_deleted: 'User not deleted',
not_updated: 'User not updated',
not_created: 'User not created',
not_found_id: 'User not found',
not_found_account: 'User not found',
not_found_email: 'User not found',
not_found_phone: 'User not found',
not_found_username: 'User not found',
not_found_role: 'User not found',
not_found_status: 'User not found',
not_found_created_at: 'User not found',
not_found_updated_at: 'User not found',
not_found_deleted_at: 'User not found',
not_found_created_by: 'User not found',
not_found_updated_by: 'User not found',
not_found_deleted_by: 'User not found',
not_found_password: 'User not found',
}
}