Skip to content

Commit c3a13d6

Browse files
authored
ref(features): Add extended-data-retention (#13572)
1 parent df2a0f5 commit c3a13d6

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,8 @@ def create_partitioned_queues(name):
852852
# Enable organizations to create and utilize Sentry Apps.
853853
'organizations:sentry-apps': False,
854854

855+
# Enable filters for extended data retention.
856+
'organizations:extended-data-retention': True,
855857
# Enable the relay functionality, for use with sentry semaphore. See
856858
# https://github.com/getsentry/semaphore.
857859
'organizations:relay': False,

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
default_manager.add('organizations:grouping-info', OrganizationFeature) # NOQA
8585
default_manager.add('organizations:tweak-grouping-config', OrganizationFeature) # NOQA
8686
default_manager.add('organizations:set-grouping-config', OrganizationFeature) # NOQA
87+
default_manager.add('organizations:extended-data-retention', OrganizationFeature) # NOQA
8788

8889
# Project scoped features
8990
default_manager.add('projects:custom-inbound-filters', ProjectFeature) # NOQA

tests/sentry/api/serializers/test_organization.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ def test_simple(self):
2626
'sso-saml2',
2727
'sso-basic',
2828
'sentry10',
29+
'extended-data-retention',
2930
])

0 commit comments

Comments
 (0)