bugfix: appointment hours now use the client timezone on UTC servers.
Logical API errors throw stable codes so users see translated messages instead of a generic bad request. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { BadRequestException, HttpStatus, Injectable, NotFoundException } from '@nestjs/common';
|
||||
import { HttpStatus, Injectable } from '@nestjs/common';
|
||||
import { PrismaService } from '../../../prisma/prisma.service';
|
||||
import { isValidMobile, mobileSearchDigits, normalizeMobile } from '../../common/phone';
|
||||
import { hasEffectivePermission } from '../../common/membership-permissions';
|
||||
@@ -77,7 +77,7 @@ export class PatientsService {
|
||||
});
|
||||
|
||||
if (!patient) {
|
||||
throw new NotFoundException('Patient not found');
|
||||
throw new AppException(ErrorCode.PATIENT_NOT_FOUND, HttpStatus.NOT_FOUND);
|
||||
}
|
||||
|
||||
return { success: true, data: patient };
|
||||
@@ -162,7 +162,7 @@ export class PatientsService {
|
||||
|
||||
getOrganizationIdFromUser(user: { organizationId?: string }) {
|
||||
if (!user?.organizationId) {
|
||||
throw new BadRequestException('Organization is not selected');
|
||||
throw new AppException(ErrorCode.AUTH_ORG_NOT_SELECTED, HttpStatus.BAD_REQUEST);
|
||||
}
|
||||
return user.organizationId;
|
||||
}
|
||||
@@ -240,7 +240,7 @@ export class PatientsService {
|
||||
});
|
||||
|
||||
if (!patient) {
|
||||
throw new NotFoundException('Patient not found');
|
||||
throw new AppException(ErrorCode.PATIENT_NOT_FOUND, HttpStatus.NOT_FOUND);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user