add acl_tags to PreAuthKey proto

This commit is contained in:
Benjamin George Roberts 2022-08-25 16:12:50 +10:00
parent cc0bec15ef
commit e27a4db281
11 changed files with 388 additions and 263 deletions

View file

@ -13,6 +13,7 @@ message PreAuthKey {
bool used = 6;
google.protobuf.Timestamp expiration = 7;
google.protobuf.Timestamp created_at = 8;
repeated string acl_tags = 9;
}
message CreatePreAuthKeyRequest {
@ -20,6 +21,7 @@ message CreatePreAuthKeyRequest {
bool reusable = 2;
bool ephemeral = 3;
google.protobuf.Timestamp expiration = 4;
repeated string acl_tags = 5;
}
message CreatePreAuthKeyResponse {