mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-17 21:37:35 +00:00
40 lines
652 B
Go
40 lines
652 B
Go
|
package domain
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
||
|
)
|
||
|
|
||
|
type Action struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
Name string
|
||
|
Script string
|
||
|
Timeout time.Duration
|
||
|
AllowedToFail bool
|
||
|
State ActionState
|
||
|
}
|
||
|
|
||
|
func (a *Action) IsValid() bool {
|
||
|
return a.Name != ""
|
||
|
}
|
||
|
|
||
|
type ActionState int32
|
||
|
|
||
|
const (
|
||
|
ActionStateUnspecified ActionState = iota
|
||
|
ActionStateActive
|
||
|
ActionStateInactive
|
||
|
ActionStateRemoved
|
||
|
actionStateCount
|
||
|
)
|
||
|
|
||
|
func (s ActionState) Valid() bool {
|
||
|
return s >= 0 && s < actionStateCount
|
||
|
}
|
||
|
|
||
|
func (s ActionState) Exists() bool {
|
||
|
return s != ActionStateUnspecified && s != ActionStateRemoved
|
||
|
}
|