Added proto messages for updating the head text

This commit is contained in:
Mikayla Maki 2022-10-01 18:18:35 -07:00
parent 8c24c858c9
commit 512f817e2f
5 changed files with 69 additions and 7 deletions

View file

@ -108,6 +108,7 @@ message Envelope {
FollowResponse follow_response = 93;
UpdateFollowers update_followers = 94;
Unfollow unfollow = 95;
UpdateHeadText update_head_text = 96;
}
}
@ -992,3 +993,9 @@ message WorktreeMetadata {
string root_name = 2;
bool visible = 3;
}
message UpdateHeadText {
uint64 project_id = 1;
uint64 buffer_id = 2;
optional string head_text = 3;
}