(author identity.Interface, unixTime int64, added []string, removed []string, metadata map[string]string)
| 85 | } |
| 86 | |
| 87 | func (c *BugCache) ForceChangeLabelsRaw(author identity.Interface, unixTime int64, added []string, removed []string, metadata map[string]string) (*bug.LabelChangeOperation, error) { |
| 88 | c.mu.Lock() |
| 89 | op, err := bug.ForceChangeLabels(c.entity, author, unixTime, added, removed, metadata) |
| 90 | c.mu.Unlock() |
| 91 | if err != nil { |
| 92 | return nil, err |
| 93 | } |
| 94 | return op, c.notifyUpdated() |
| 95 | } |
| 96 | |
| 97 | func (c *BugCache) Open() (*bug.SetStatusOperation, error) { |
| 98 | author, err := c.getUserIdentity() |
no test coverage detected