This file contains hidden or 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
import { Field, InterfaceType } from 'type-graphql'; | |
import { EventObject } from '../../../core/entities'; | |
import { MessageFormat } from '../../../core/entities/TimelineEntry'; | |
import { FormattedMessage } from '../community/MemberTimelineMessageTypes'; | |
@InterfaceType({ | |
description: 'Provides a MessageFormat compatible message', | |
}) | |
export abstract class HasFormattedEventMessage { |
This file contains hidden or 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
Sampling process 57897 for 3 seconds with 1 millisecond of run time between samples | |
Sampling completed, processing symbols... | |
Analysis of sampling Remotion (pid 57897) every 1 millisecond | |
Process: Remotion [57897] | |
Path: /Applications/Remotion.app/Contents/MacOS/Remotion | |
Load Address: 0x10908f000 | |
Identifier: com.remotion.remotion | |
Version: 1.40.0 (137) | |
Code Type: X86-64 | |
Platform: macOS |
This file contains hidden or 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/packages/api/src/entrypoints/slack/index.ts b/packages/api/src/entrypoints/slack/index.ts | |
index 21d9fed..dddd1a8 100644 | |
--- a/packages/api/src/entrypoints/slack/index.ts | |
+++ b/packages/api/src/entrypoints/slack/index.ts | |
@@ -1,7 +1,9 @@ | |
import { App, ExpressReceiver, LogLevel } from '@slack/bolt'; | |
-import * as bodyParser from 'body-parser'; | |
+import { verifySignatureAndParseRawBody } from '@slack/bolt/dist/ExpressReceiver'; | |
+import { ConsoleLogger } from '@slack/logger'; | |
NewerOlder