mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
* feat: historical tasks in database, better scheduling, and unified API for accessing tasks * feat: new UI for everything * fix: add translations and fix formatting
15 lines
226 B
Text
15 lines
226 B
Text
model Task {
|
|
id String @id
|
|
taskGroup String
|
|
name String
|
|
|
|
started DateTime
|
|
ended DateTime
|
|
|
|
success Boolean
|
|
error Json?
|
|
progress Float
|
|
log String[]
|
|
|
|
acls String[]
|
|
}
|