Skip to content

Commit

Permalink
Merge pull request #293 from OzJacobii/feature/SA-6506_Enable_Saas_Fo…
Browse files Browse the repository at this point in the history
…r_Gateway

[Feature/SA-6506] Enable Saas For Gateway
  • Loading branch information
OzJacobii committed Apr 7, 2024
2 parents 73cc7a9 + f36fd16 commit 1e2f788
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions axonius_api_client/api/json_api/system_settings.py
Expand Up @@ -121,6 +121,9 @@ def data_scope_check(self):
@property
def saas_enabled(self) -> bool:
"""Get the status of SAAS & tunnel support being enabled."""
# From version 6.1 the FF doesn't exist
if 'enable_saas' not in self.config:
return True
return self.config.get("enable_saas", False)

@property
Expand Down

0 comments on commit 1e2f788

Please sign in to comment.