✏️ Fix typo

This commit is contained in:
2022-08-21 00:53:24 +02:00
parent 5fd7ae44fd
commit 6ec9e484eb
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ export async function getTimetable(req, res) {
return;
}
res.send({
trusted: timetable.trused,
trusted: timetable.trusted,
source: timetable.source,
data: timetable.data,
});

View File

@ -16,7 +16,7 @@ model Timetable {
validUntil DateTime?
data Json
source String?
trused Boolean @default(true)
trusted Boolean @default(true)
}
model Substitution {