mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
463 B
463 B
The data model
classDiagram
direction RL
class Task {
- url
- domain
- check
- expected
- frequency
- selected_by
- selected_at
- completed_at
- next_run
}
class Result{
- task : Task
- task_id
- task
- agent_id
- submitted_at
- status
- severity
- context
}
Result "*" o-- "1" Task : has many
---
caption: models.py
---