mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	webhooks: Add a webhook capable of parsing Slack payloads.
This adds a webhook that can be used to interpret standard Slack payloads. Since there are a ton of existing Slack integrations out there, having a webhook which can accept standard Slack payloads can significantly ease transition pains. Obviously this can't do everything that Slack payloads can (particularly WRT their widgets/interactions), but we can ingest text and parse out multi-block payloads into a message relatively reasonably.
This commit is contained in:
		@@ -361,6 +361,12 @@ WEBHOOK_INTEGRATIONS: List[WebhookIntegration] = [
 | 
			
		||||
    WebhookIntegration('reviewboard', ['version-control'], display_name="ReviewBoard"),
 | 
			
		||||
    WebhookIntegration('semaphore', ['continuous-integration', 'deployment']),
 | 
			
		||||
    WebhookIntegration('sentry', ['monitoring']),
 | 
			
		||||
    WebhookIntegration(
 | 
			
		||||
        'slack_incoming',
 | 
			
		||||
        ['communication'],
 | 
			
		||||
        display_name="Slack-compatible webhook",
 | 
			
		||||
        logo='images/integrations/logos/slack.svg',
 | 
			
		||||
    ),
 | 
			
		||||
    WebhookIntegration('slack', ['communication']),
 | 
			
		||||
    WebhookIntegration('solano', ['continuous-integration'], display_name='Solano Labs'),
 | 
			
		||||
    WebhookIntegration('splunk', ['monitoring'], display_name='Splunk'),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user