Removing auth from post and community join.

This commit is contained in:
Dessalines 2020-09-13 09:24:45 -05:00
parent 6996b27706
commit 5d4fcab2c4

View file

@ -968,7 +968,6 @@ export interface UserJoinResponse {
export interface PostJoinForm {
post_id: number;
auth: string;
}
export interface PostJoinResponse {
@ -977,7 +976,6 @@ export interface PostJoinResponse {
export interface CommunityJoinForm {
community_id: number;
auth: string;
}
export interface CommunityJoinResponse {
@ -1032,7 +1030,9 @@ export type MessageType =
| DeletePrivateMessageForm
| MarkPrivateMessageAsReadForm
| GetPrivateMessagesForm
| SiteConfigForm;
| SiteConfigForm
| PostJoinForm
| CommunityJoinForm;
type ResponseType =
| SiteResponse
@ -1057,7 +1057,9 @@ type ResponseType =
| PrivateMessageResponse
| PrivateMessagesResponse
| GetSiteConfigResponse
| GetSiteResponse;
| GetSiteResponse
| PostJoinResponse
| CommunityJoinResponse;
export interface WebSocketResponse {
op: UserOperation;