Skip to content

Commit

Permalink
fix: stores
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed May 16, 2024
1 parent daeac31 commit 444068f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/stores/tenant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Tenant> {
panic!("Shouldn't have run in single tenant mode")
}

async fn update_tenant_fcm_v1(
&self,
_id: &str,
Expand All @@ -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<Tenant> {
panic!("Shouldn't have run in single tenant mode")
}

async fn update_tenant_apns(
&self,
_id: &str,
Expand All @@ -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<Tenant> {
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")
}
Expand Down

0 comments on commit 444068f

Please sign in to comment.