ZIm/crates/proto/proto/core.proto
Michael Sloan 7d708c14e4
Use git config --global user.email for email address in automatic Co-authored-by (#32624)
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>
2025-06-12 19:39:08 +00:00

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;
}