Feeds service (#24)

This commit is contained in:
Janos Dobronszki
2020-11-11 17:02:39 +01:00
committed by GitHub
parent b30adabfc3
commit 7a858a62dc
17 changed files with 731 additions and 69 deletions

View File

@@ -18,6 +18,7 @@ message Post {
int64 updated = 6;
string author = 7;
repeated string tags = 8;
map<string,string> metadata = 9;
}
// Query posts. Acts as a listing when no id or slug provided.
@@ -43,6 +44,7 @@ message SaveRequest {
// When updating a post and wanting to delete all tags,
// send a list of tags with only one member being an empty string [""]
repeated string tags = 6;
map<string,string> metadata = 7;
}
message SaveResponse {