light modification

This commit is contained in:
mr
2025-01-15 11:09:33 +01:00
parent b48e2cb3e5
commit 555c5acb26
3 changed files with 23 additions and 0 deletions

View File

@@ -36,3 +36,8 @@ func (d ScheduledType) String() string {
func (d ScheduledType) EnumIndex() int {
return int(d)
}
// List
func ScheduleList() []ScheduledType {
return []ScheduledType{DRAFT, SCHEDULED, STARTED, FAILURE, SUCCESS, FORGOTTEN, DELAYED, CANCELLED}
}