We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c997e90 commit efcbaf8Copy full SHA for efcbaf8
models/actions/task_output.go
@@ -20,6 +20,10 @@ type ActionTaskOutput struct {
20
OutputValue string `xorm:"MEDIUMTEXT"`
21
}
22
23
+func init() {
24
+ db.RegisterModel(new(ActionTaskOutput))
25
+}
26
+
27
// FindTaskOutputByTaskID returns the outputs of the task.
28
func FindTaskOutputByTaskID(ctx context.Context, taskID int64) ([]*ActionTaskOutput, error) {
29
var outputs []*ActionTaskOutput
0 commit comments