Added descriptions for the four types of join request/response

This commit is contained in:
Gary Conroy 2021-02-25 10:06:05 +00:00
parent 6be351e60e
commit cbe7fc18c6
1 changed files with 16 additions and 17 deletions

View File

@ -10,7 +10,6 @@ info:
[**Lemmy**](https://github.com/LemmyNet/lemmy) is a decentralized alternative to proprietary link aggregators such as Reddit. [**Lemmy**](https://github.com/LemmyNet/lemmy) is a decentralized alternative to proprietary link aggregators such as Reddit.
#### More information... #### More information...
- [Install your own server](https://join.lemmy.ml/docs/en/administration/administration.html) - [Install your own server](https://join.lemmy.ml/docs/en/administration/administration.html)
- [WebSocket](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#websocket)
- [Lemmy data types](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#data-types) - [Lemmy data types](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#data-types)
- [Images](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#images) - [Images](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#images)
- [RSS/Atom feeds](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#rss--atom-feeds) - [RSS/Atom feeds](https://join.lemmy.ml/docs/en/contributing/websocket_http_api.html#rss--atom-feeds)
@ -509,7 +508,7 @@ channels:
publish: publish:
summary: UserJoin (request) summary: UserJoin (request)
description: |- description: |-
Forthcoming... Join to receive WebSocket replies, private messages and so on for this user.
#### HTTP API - operation and endpoint. #### HTTP API - operation and endpoint.
@ -521,7 +520,7 @@ channels:
$ref: '#/components/messages/userJoinRequest' $ref: '#/components/messages/userJoinRequest'
subscribe: subscribe:
summary: UserJoin (response) summary: UserJoin (response)
description: Forthcoming... description: Verification that you will receive these WebSocket messages
operationId: userJoinResponseMessage operationId: userJoinResponseMessage
tags: tags:
- name: User, authentication and admin - name: User, authentication and admin
@ -1052,7 +1051,7 @@ channels:
publish: publish:
summary: CommunityJoin (request) summary: CommunityJoin (request)
description: |- description: |-
Forthcoming... Join to receive WebSocket messages for this community's posts.
#### HTTP API - operation and endpoint. #### HTTP API - operation and endpoint.
@ -1064,7 +1063,7 @@ channels:
$ref: '#/components/messages/communityJoinRequest' $ref: '#/components/messages/communityJoinRequest'
subscribe: subscribe:
summary: CommunityJoin (response) summary: CommunityJoin (response)
description: Forthcoming... description: Verification that you will receive these WebSocket messages
operationId: CommunityJoinResponseMessage operationId: CommunityJoinResponseMessage
tags: tags:
- name: Community - name: Community
@ -1076,7 +1075,7 @@ channels:
publish: publish:
summary: ModJoin (request) summary: ModJoin (request)
description: |- description: |-
Forthcoming... Join to receive WebSocket messages for community moderator updates such as reports.
#### HTTP API - operation and endpoint. #### HTTP API - operation and endpoint.
@ -1088,7 +1087,7 @@ channels:
$ref: '#/components/messages/modJoinRequest' $ref: '#/components/messages/modJoinRequest'
subscribe: subscribe:
summary: ModJoin (response) summary: ModJoin (response)
description: Forthcoming... description: Verification that you will receive these WebSocket messages
operationId: modJoinResponseMessage operationId: modJoinResponseMessage
tags: tags:
- name: Community - name: Community
@ -1352,7 +1351,7 @@ channels:
publish: publish:
summary: PostJoin (request) summary: PostJoin (request)
description: |- description: |-
Forthcoming... Join to receive WebSocket messages for this post's comments.
#### HTTP API - operation and endpoint. #### HTTP API - operation and endpoint.
@ -1364,7 +1363,7 @@ channels:
$ref: '#/components/messages/postJoinRequest' $ref: '#/components/messages/postJoinRequest'
subscribe: subscribe:
summary: PostJoin (response) summary: PostJoin (response)
description: Forthcoming... description: Verification that you will receive these WebSocket messages
operationId: postJoinResponseMessage operationId: postJoinResponseMessage
tags: tags:
- name: Post - name: Post
@ -2448,7 +2447,7 @@ components:
data: data:
$ref: '#/components/schemas/ban_view' $ref: '#/components/schemas/ban_view'
userJoinRequest: userJoinRequest:
name: Forthcoming... name: Request to receive WebSocket messages for this user.
payload: payload:
type: object type: object
required: required:
@ -2467,7 +2466,7 @@ components:
auth: auth:
$ref: '#/components/schemas/authStringSchema' $ref: '#/components/schemas/authStringSchema'
userJoinResponse: userJoinResponse:
name: Forthcoming... name: Verification that you will receive these WebSocket messages
payload: payload:
type: object type: object
properties: properties:
@ -3474,7 +3473,7 @@ components:
community_view: community_view:
$ref: '#/components/schemas/community_view' $ref: '#/components/schemas/community_view'
communityJoinRequest: communityJoinRequest:
name: Forthcoming... name: Request to receive WebSocket messages for this community's posts
payload: payload:
type: object type: object
required: required:
@ -3493,7 +3492,7 @@ components:
community_id: community_id:
$ref: '#/components/schemas/community_id' $ref: '#/components/schemas/community_id'
communityJoinResponse: communityJoinResponse:
name: Forthcoming... name: Verification that you will receive these WebSocket messages
payload: payload:
type: object type: object
properties: properties:
@ -3506,7 +3505,7 @@ components:
joined: joined:
$ref: '#/components/schemas/joined' $ref: '#/components/schemas/joined'
modJoinRequest: modJoinRequest:
name: Forthcoming... name: Request to receive WebSocket messages for community moderator updates such as reports.
payload: payload:
type: object type: object
required: required:
@ -3525,7 +3524,7 @@ components:
community_id: community_id:
$ref: '#/components/schemas/community_id' $ref: '#/components/schemas/community_id'
modJoinResponse: modJoinResponse:
name: Forthcoming... name: Verification that you will receive these WebSocket messages
payload: payload:
type: object type: object
properties: properties:
@ -3938,7 +3937,7 @@ components:
post_view: post_view:
$ref: '#/components/schemas/post_view' $ref: '#/components/schemas/post_view'
postJoinRequest: postJoinRequest:
name: Forthcoming... name: Request to receive WebSocket messages for this post's comments
payload: payload:
type: object type: object
required: required:
@ -3957,7 +3956,7 @@ components:
post_id: post_id:
$ref: '#/components/schemas/post_id' $ref: '#/components/schemas/post_id'
postJoinResponse: postJoinResponse:
name: Forthcoming... name: Verification that you will receive these WebSocket messages
payload: payload:
type: object type: object
properties: properties: