Snapshot is a compiled form of the Bug data structure used for storage and merge
| 14 | |
| 15 | // Snapshot is a compiled form of the Bug data structure used for storage and merge |
| 16 | type Snapshot struct { |
| 17 | id entity.Id |
| 18 | |
| 19 | Status common.Status |
| 20 | Title string |
| 21 | Comments []Comment |
| 22 | Labels []common.Label |
| 23 | Author identity.Interface |
| 24 | Actors []identity.Interface |
| 25 | Participants []identity.Interface |
| 26 | CreateTime time.Time |
| 27 | |
| 28 | Timeline []TimelineItem |
| 29 | |
| 30 | Operations []dag.Operation |
| 31 | } |
| 32 | |
| 33 | // Id returns the Bug identifier |
| 34 | func (snap *Snapshot) Id() entity.Id { |
nothing calls this directly
no outgoing calls
no test coverage detected