mirror of
https://github.com/usememos/memos.git
synced 2024-11-15 19:26:54 +08:00
46 lines
772 B
Protocol Buffer
46 lines
772 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package memos.api.v2;
|
||
|
|
||
|
import "google/api/annotations.proto";
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
|
||
|
option go_package = "gen/api/v2";
|
||
|
|
||
|
service ActivityService {
|
||
|
rpc GetActivity(GetActivityRequest) returns (GetActivityResponse) {
|
||
|
option (google.api.http) = {get: "/v2/activities"};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message Activity {
|
||
|
int32 id = 1;
|
||
|
|
||
|
int32 creator_id = 2;
|
||
|
|
||
|
string type = 3;
|
||
|
|
||
|
string level = 4;
|
||
|
|
||
|
google.protobuf.Timestamp create_time = 5;
|
||
|
|
||
|
ActivityPayload payload = 6;
|
||
|
}
|
||
|
|
||
|
message ActivityMemoCommentPayload {
|
||
|
int32 memo_id = 1;
|
||
|
int32 related_memo_id = 2;
|
||
|
}
|
||
|
|
||
|
message ActivityPayload {
|
||
|
ActivityMemoCommentPayload memo_comment = 1;
|
||
|
}
|
||
|
|
||
|
message GetActivityRequest {
|
||
|
int32 id = 1;
|
||
|
}
|
||
|
|
||
|
message GetActivityResponse {
|
||
|
Activity activity = 1;
|
||
|
}
|