AddCommentOperation will add a new comment in the bug
| 16 | |
| 17 | // AddCommentOperation will add a new comment in the bug |
| 18 | type AddCommentOperation struct { |
| 19 | dag.OpBase |
| 20 | Message string `json:"message"` |
| 21 | // TODO: change for a map[string]util.hash to store the filename ? |
| 22 | Files []repository.Hash `json:"files"` |
| 23 | } |
| 24 | |
| 25 | func (op *AddCommentOperation) Id() entity.Id { |
| 26 | return dag.IdOperation(op, &op.OpBase) |
nothing calls this directly
no outgoing calls
no test coverage detected