feat: add clinic status management with active/inactive toggle and update related API endpoints

This commit is contained in:
hamed
2026-06-10 21:29:29 +03:30
parent b0d6ecbd96
commit c41d03b5c5
6 changed files with 555 additions and 134 deletions
+1 -2
View File
@@ -41,11 +41,10 @@ export interface Clinic {
uuid: string;
name: string;
phone: string | null;
description: string | null;
logo: string | null;
is_active: boolean;
doctors_count: number;
created_at: string;
created_at: number;
}
export type AppointmentStatus =