WIP: integrate status with collab
This commit is contained in:
parent
18cec8d64f
commit
a58a33fc93
5 changed files with 154 additions and 5 deletions
|
@ -986,8 +986,22 @@ message Entry {
|
|||
message RepositoryEntry {
|
||||
uint64 work_directory_id = 1;
|
||||
optional string branch = 2;
|
||||
repeated uint64 removed_statuses = 3;
|
||||
repeated StatusEntry updated_statuses = 4;
|
||||
}
|
||||
|
||||
message StatusEntry {
|
||||
uint64 entry_id = 1;
|
||||
GitStatus status = 2;
|
||||
}
|
||||
|
||||
enum GitStatus {
|
||||
Added = 0;
|
||||
Modified = 1;
|
||||
Conflict = 2;
|
||||
}
|
||||
|
||||
|
||||
message BufferState {
|
||||
uint64 id = 1;
|
||||
optional File file = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue