From 45daeead6180bf4013205f9eca7d90ea9e988ae4 Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Thu, 7 Nov 2024 16:08:08 +0100 Subject: [PATCH] Fix billable contract for self-hosting --- app/Service/BillingContract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Service/BillingContract.php b/app/Service/BillingContract.php index 467ab545..a3c58a3b 100644 --- a/app/Service/BillingContract.php +++ b/app/Service/BillingContract.php @@ -22,7 +22,7 @@ class BillingContract */ public function hasSubscription(Organization $organization): bool { - return false; + return true; } /**