()
| 169 | } |
| 170 | |
| 171 | func (h *handler) handleGetAttachmentMigration() error { |
| 172 | status, err := h.db.AttachmentMigrationManager.GetStatus(h.ctx()) |
| 173 | if err != nil { |
| 174 | return err |
| 175 | } |
| 176 | h.writeRawJSON(status) |
| 177 | return nil |
| 178 | } |
| 179 | |
| 180 | func (h *handler) handleCompact() error { |
| 181 | action := h.getQuery("action") |
nothing calls this directly
no test coverage detected