From 444068fbc50ef38565acaac922b07491a0dfaa0f Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 16 May 2024 17:08:23 -0400 Subject: [PATCH] fix: stores --- src/stores/tenant.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/stores/tenant.rs b/src/stores/tenant.rs index bc15ff0e..095d9050 100644 --- a/src/stores/tenant.rs +++ b/src/stores/tenant.rs @@ -577,6 +577,10 @@ impl TenantStore for DefaultTenantStore { panic!("Shouldn't have run in single tenant mode") } + async fn update_tenant_delete_fcm(&self, _id: &str) -> Result { + panic!("Shouldn't have run in single tenant mode") + } + async fn update_tenant_fcm_v1( &self, _id: &str, @@ -585,6 +589,10 @@ impl TenantStore for DefaultTenantStore { panic!("Shouldn't have run in single tenant mode") } + async fn update_tenant_delete_fcm_v1(&self, _id: &str) -> Result { + panic!("Shouldn't have run in single tenant mode") + } + async fn update_tenant_apns( &self, _id: &str, @@ -601,6 +609,10 @@ impl TenantStore for DefaultTenantStore { panic!("Shouldn't have run in single tenant mode") } + async fn update_tenant_delete_apns(&self, _id: &str) -> Result { + panic!("Shouldn't have run in single tenant mode") + } + async fn suspend_tenant(&self, _id: &str, _reason: &str) -> Result<()> { panic!("Shouldn't have run in single tenant mode") }