From d7597a92c4a14e1f2ba91fb3230503bf17b9e8c2 Mon Sep 17 00:00:00 2001 From: Zach Aysan Date: Fri, 1 Nov 2024 19:22:30 +0000 Subject: [PATCH] Add key settings and remove TODO --- api/app/settings/common.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/app/settings/common.py b/api/app/settings/common.py index 3c41e9731585..807e64de1e92 100644 --- a/api/app/settings/common.py +++ b/api/app/settings/common.py @@ -106,7 +106,7 @@ "organisations", "organisations.invites", "organisations.permissions", - "organisations.subscriptions.licensing", # TODO: should this be added conditionally? + "organisations.subscriptions.licensing", "projects", "sales_dashboard", "edge_api", @@ -1272,3 +1272,6 @@ # subscriptions created before this date full audit log and versioning # history. VERSIONING_RELEASE_DATE = env.date("VERSIONING_RELEASE_DATE", default=None) + +SUBSCRIPTION_LICENCE_PUBLIC_KEY = env.str("SUBSCRIPTION_LICENCE_PUBLIC_KEY", None) +SUBSCRIPTION_LICENCE_PRIVATE_KEY = env.str("SUBSCRIPTION_LICENCE_PRIVATE_KEY", None)