(ctx context.Context, logEntry *LogEntry, seqID SequenceID, channel channels.ID, versionType ChangesVersionType)
| 568 | } |
| 569 | |
| 570 | func makeRevocationChangeEntry(ctx context.Context, logEntry *LogEntry, seqID SequenceID, channel channels.ID, versionType ChangesVersionType) ChangeEntry { |
| 571 | entry := makeChangeEntry(ctx, logEntry, seqID, channel, versionType) |
| 572 | entry.Revoked = true |
| 573 | |
| 574 | return entry |
| 575 | } |
| 576 | |
| 577 | // AuditReadEvent issues a read event for this change entry. If there is no document body, there will be no event used. |
| 578 | func (ce *ChangeEntry) AuditReadEvent(ctx context.Context) { |
no test coverage detected