(api *purger.TenantDeletionAPI)
| 346 | } |
| 347 | |
| 348 | func (a *API) RegisterTenantDeletion(api *purger.TenantDeletionAPI) { |
| 349 | a.RegisterRoute("/purger/delete_tenant", http.HandlerFunc(api.DeleteTenant), true, "POST") |
| 350 | a.RegisterRoute("/purger/delete_tenant_status", http.HandlerFunc(api.DeleteTenantStatus), true, "GET") |
| 351 | } |
| 352 | |
| 353 | // RegisterRuler registers routes associated with the Ruler service. |
| 354 | func (a *API) RegisterRuler(r *ruler.Ruler) { |
no test coverage detected