File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
tests/sentry/api/serializers Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -852,6 +852,8 @@ def create_partitioned_queues(name):
852
852
# Enable organizations to create and utilize Sentry Apps.
853
853
'organizations:sentry-apps' : False ,
854
854
855
+ # Enable filters for extended data retention.
856
+ 'organizations:extended-data-retention' : True ,
855
857
# Enable the relay functionality, for use with sentry semaphore. See
856
858
# https://github.com/getsentry/semaphore.
857
859
'organizations:relay' : False ,
Original file line number Diff line number Diff line change 84
84
default_manager .add ('organizations:grouping-info' , OrganizationFeature ) # NOQA
85
85
default_manager .add ('organizations:tweak-grouping-config' , OrganizationFeature ) # NOQA
86
86
default_manager .add ('organizations:set-grouping-config' , OrganizationFeature ) # NOQA
87
+ default_manager .add ('organizations:extended-data-retention' , OrganizationFeature ) # NOQA
87
88
88
89
# Project scoped features
89
90
default_manager .add ('projects:custom-inbound-filters' , ProjectFeature ) # NOQA
Original file line number Diff line number Diff line change @@ -26,4 +26,5 @@ def test_simple(self):
26
26
'sso-saml2' ,
27
27
'sso-basic' ,
28
28
'sentry10' ,
29
+ 'extended-data-retention' ,
29
30
])
You can’t perform that action at this time.
0 commit comments