1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-11 18:59:05 +00:00

fix: detention lesson and teacher to be nullable

This commit is contained in:
Veloi 2023-09-23 21:48:21 +01:00 committed by GitHub
parent 2543f22b5d
commit eb2bdfd557
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -321,7 +321,7 @@ export interface Detention {
id: number;
name: string;
};
};
} | null;
lesson_pupil_behaviour: {
reason: string;
};
@ -330,7 +330,7 @@ export interface Detention {
first_name: string;
last_name: string;
title: string;
};
} | null;
detention_type: {
name: string;
};