Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(tutorials): fix indentation for slackbot with websocket doc #3420

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 27 additions & 26 deletions markdown/docs/tutorials/websocket/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ The `payload` attribute specifies the name, format, and description of all the e
type: object
properties:
app_id:
type: string
type: string
num_connections:
type: integer
type: integer
debug_info:
type: object
properties:
Expand All @@ -124,30 +124,31 @@ The `payload` attribute specifies the name, format, and description of all the e
type: integer
approximate_connection_time:
type: integer
reaction:
type: object
properties:
user:
type: string
description: User ID who performed this event
reaction:
type: string
description: The only reaction that we need is a heart emoji
item_user:
type: string
description: User ID that created the original item that has been reacted to
item:
type: object
properties:
channel:
type: string
description: Channel information of original message
ts:
type: string
description: Timestamp information of original message
event_ts:
type: string
description: Reaction timestamp `}
reaction:
type: object
properties:
user:
type: string
description: User ID who performed this event
reaction:
type: string
description: The only reaction that we need is a heart emoji
item_user:
type: string
description: User ID that created the original item that has been reacted to
item:
type: object
properties:
channel:
type: string
description: Channel information of original message
ts:
type: string
description: Timestamp information of original message
event_ts:
type: string
description: Reaction timestamp
`}
</CodeBlock>

## Define channels and bindings
Expand Down
Loading