CreateOperation define the initial creation of a bug
| 16 | |
| 17 | // CreateOperation define the initial creation of a bug |
| 18 | type CreateOperation struct { |
| 19 | dag.OpBase |
| 20 | Title string `json:"title"` |
| 21 | Message string `json:"message"` |
| 22 | Files []repository.Hash `json:"files"` |
| 23 | } |
| 24 | |
| 25 | func (op *CreateOperation) Id() entity.Id { |
| 26 | return dag.IdOperation(op, &op.OpBase) |
nothing calls this directly
no outgoing calls
no test coverage detected