This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
The MIT License | |
Copyright (c) 2021 Casey Duquette, Snap Inc. | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE default.sentry_dist ( | |
`event_id` FixedString(32), | |
`project_id` UInt64, | |
`group_id` UInt64, | |
`timestamp` DateTime, | |
`deleted` UInt8, | |
`retention_days` UInt16, | |
`platform` Nullable(String), | |
`message` Nullable(String), | |
`primary_hash` Nullable(FixedString(32)), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/sentry/integrations/slack/integration.py b/src/sentry/integrations/slack/integration.py | |
index 0926a1132d..0264d10c24 100644 | |
--- a/src/sentry/integrations/slack/integration.py | |
+++ b/src/sentry/integrations/slack/integration.py | |
@@ -75,13 +75,17 @@ class SlackIntegrationProvider(IntegrationProvider): | |
'links:read', | |
'links:write', | |
]) if not settings.SLACK_INTEGRATION_USE_WST else frozenset([ | |
- 'channels:read', | |
- 'groups:read', |