Add ability to join a room from a channel ID

co-authored-by: max <max@zed.dev>
This commit is contained in:
Mikayla Maki 2023-07-31 15:27:10 -07:00
parent 4b94bfa045
commit 92fa879b0c
No known key found for this signature in database
16 changed files with 485 additions and 105 deletions

View file

@ -136,6 +136,7 @@ message Envelope {
RemoveChannelMember remove_channel_member = 122;
RespondToChannelInvite respond_to_channel_invite = 123;
UpdateChannels update_channels = 124;
JoinChannel join_channel = 125;
}
}
@ -870,6 +871,10 @@ message UpdateChannels {
repeated uint64 remove_channel_invitations = 4;
}
message JoinChannel {
uint64 channel_id = 1;
}
message CreateChannel {
string name = 1;
optional uint64 parent_id = 2;