File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ class EnvironmentModel:
4242 allow_client_traits : bool = True
4343 updated_at : datetime = field (default_factory = utcnow_with_tz )
4444 use_mv_v2_evaluation : bool = False
45+ hide_sensitive_data : bool = False
4546
4647 amplitude_config : IntegrationModel = None
4748 segment_config : IntegrationModel = None
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ class BaseEnvironmentSchema(Schema):
4444 allow_client_traits = fields .Bool (required = False , default = True )
4545 hide_disabled_flags = fields .Bool (required = False , allow_none = True )
4646 use_mv_v2_evaluation = fields .Bool (required = False , default = False )
47+ hide_sensitive_data = fields .Bool (required = False , default = False )
4748
4849 segment_config = fields .Nested (IntegrationSchema , required = False , allow_none = True )
4950 heap_config = fields .Nested (IntegrationSchema , required = False , allow_none = True )
You can’t perform that action at this time.
0 commit comments