LabelChangeOperation define a Bug operation to add or remove labels
| 19 | |
| 20 | // LabelChangeOperation define a Bug operation to add or remove labels |
| 21 | type LabelChangeOperation struct { |
| 22 | dag.OpBase |
| 23 | Added []common.Label `json:"added"` |
| 24 | Removed []common.Label `json:"removed"` |
| 25 | } |
| 26 | |
| 27 | func (op *LabelChangeOperation) Id() entity.Id { |
| 28 | return dag.IdOperation(op, &op.OpBase) |
nothing calls this directly
no outgoing calls
no test coverage detected