SetStatusOperation will change the status of a bug
| 14 | |
| 15 | // SetStatusOperation will change the status of a bug |
| 16 | type SetStatusOperation struct { |
| 17 | dag.OpBase |
| 18 | Status common.Status `json:"status"` |
| 19 | } |
| 20 | |
| 21 | func (op *SetStatusOperation) Id() entity.Id { |
| 22 | return dag.IdOperation(op, &op.OpBase) |
nothing calls this directly
no outgoing calls
no test coverage detected