feat(api): add a seed field to actions
1 files changed, 2 insertions(+), 0 deletions(-) M api/models/action.go
M api/models/action.go => api/models/action.go +2 -0
@@ 24,6 24,7 @@ type Action struct { Invoker string `json:"invoker"` Target string `json:"target"` Command datatypes.JSON `json:"command"` Seed uint64 `json:"seed"` } @@ type PostAction struct { 31,4 32,5 @@ type PostAction struct { Invoker string `json:"invoker"` Target string `json:"target"` Command string `json:"command"` Seed uint64 `json:"seed"` }