EditCommentOperation will change a comment in the bug
| 19 | |
| 20 | // EditCommentOperation will change a comment in the bug |
| 21 | type EditCommentOperation struct { |
| 22 | dag.OpBase |
| 23 | Target entity.Id `json:"target"` |
| 24 | Message string `json:"message"` |
| 25 | Files []repository.Hash `json:"files"` |
| 26 | } |
| 27 | |
| 28 | func (op *EditCommentOperation) Id() entity.Id { |
| 29 | return dag.IdOperation(op, &op.OpBase) |
nothing calls this directly
no outgoing calls
no test coverage detected