add status to get settings for ai
All checks were successful
Deploy / CreateImage (push) Successful in 2m8s
Deploy / DeployService (push) Successful in 24s

This commit is contained in:
skeris 2025-04-22 17:43:47 +03:00
parent f5fe8654df
commit ac54bf45ee

@ -95,6 +95,7 @@ type ShavedQuiz struct {
DueTo uint64 `json:"due"`
TimeOfPassing uint64 `json:"delay"`
Pausable bool `json:"pausable"`
Status string `json:"status"`
}
// ShavedQuestion shortened struct for delivery data to customer
@ -297,6 +298,7 @@ func dao2dtoQuiz(quiz model.Quiz) ShavedQuiz {
DueTo: quiz.DueTo,
TimeOfPassing: quiz.TimeOfPassing,
Pausable: quiz.Pausable,
Status: quiz.Status,
}
}