
Release Notes: - Automatic population of `Co-authored-by` now uses `git config --global user.email` --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Conrad <conrad@zed.dev>
29 lines
521 B
Protocol Buffer
29 lines
521 B
Protocol Buffer
syntax = "proto3";
|
|
package zed.messages;
|
|
|
|
message PeerId {
|
|
uint32 owner_id = 1;
|
|
uint32 id = 2;
|
|
}
|
|
|
|
message User {
|
|
reserved 4;
|
|
uint64 id = 1;
|
|
string github_login = 2;
|
|
string avatar_url = 3;
|
|
optional string name = 5;
|
|
}
|
|
|
|
message Nonce {
|
|
uint64 upper_half = 1;
|
|
uint64 lower_half = 2;
|
|
}
|
|
|
|
message Collaborator {
|
|
PeerId peer_id = 1;
|
|
uint32 replica_id = 2;
|
|
uint64 user_id = 3;
|
|
bool is_host = 4;
|
|
optional string committer_name = 5;
|
|
optional string committer_email = 6;
|
|
}
|