Show the reason why a join request was declined
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
740ec3d192
commit
ed6ed99d8f
6 changed files with 203 additions and 17 deletions
|
@ -153,7 +153,15 @@ message JoinProjectResponse {
|
|||
repeated LanguageServer language_servers = 4;
|
||||
}
|
||||
|
||||
message Decline {}
|
||||
message Decline {
|
||||
Reason reason = 1;
|
||||
|
||||
enum Reason {
|
||||
Declined = 0;
|
||||
Closed = 1;
|
||||
WentOffline = 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
message LeaveProject {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue