Register project activity for offline projects as well

This commit is contained in:
Antonio Scandurra 2022-06-29 14:55:04 +02:00
parent a52de770b1
commit e3cfc7b3ce
7 changed files with 227 additions and 66 deletions

View file

@ -121,7 +121,9 @@ message Test {
uint64 id = 1;
}
message RegisterProject {}
message RegisterProject {
bool online = 1;
}
message RegisterProjectResponse {
uint64 project_id = 1;
@ -134,6 +136,7 @@ message UnregisterProject {
message UpdateProject {
uint64 project_id = 1;
repeated WorktreeMetadata worktrees = 2;
bool online = 3;
}
message RegisterProjectActivity {