Skip to content

Commit 156fb07

Browse files
add error if user tries to mo without ff
1 parent 5ed8d97 commit 156fb07

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

src/sentry/integrations/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ class IntegrationFeatures(StrEnum):
122122
STACKTRACE_LINK = "stacktrace-link"
123123
CODEOWNERS = "codeowners"
124124
USER_MAPPING = "user-mapping"
125-
SCM_MULTI_ORG = "scm-multi-org"
126125

127126
# features currently only existing on plugins:
128127
DATA_FORWARDING = "data-forwarding"

src/sentry/integrations/github/integration.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,6 @@
120120
""",
121121
IntegrationFeatures.TICKET_RULES,
122122
),
123-
FeatureDescription(
124-
"""
125-
Connect multiple Sentry organizations to a single GitHub account.
126-
""",
127-
IntegrationFeatures.SCM_MULTI_ORG,
128-
),
129123
]
130124

131125
metadata = IntegrationMetadata(

tests/sentry/integrations/github/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1452,7 +1452,7 @@ def test_github_installation_fails_on_invalid_installation(self, mock_record):
14521452

14531453
self.assertTemplateUsed(resp, "sentry/integrations/github-integration-failed.html")
14541454
assert (
1455-
b'{"success":false,"data":{"error":"User does not have access to given installation"}'
1455+
b'{"success":false,"data":{"error":"User does not have access to given installation."}'
14561456
in resp.content
14571457
)
14581458
assert (

0 commit comments

Comments
 (0)