Add metadata to groups
All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 1m58s

This commit is contained in:
Arnaud Delcasse
2026-01-13 22:08:54 +01:00
parent eb884ab52d
commit 68912e17a0
4 changed files with 46 additions and 9 deletions

View File

@@ -6,7 +6,8 @@ import "google/protobuf/struct.proto";
message Group {
string id = 1;
string namespace = 2;
string namespace = 2;
repeated string members = 3;
google.protobuf.Struct data = 4;
google.protobuf.Struct metadata = 5;
}