From bc151a868890b5673166e8d5f5253ffe5f1bdac2 Mon Sep 17 00:00:00 2001 From: Any Association Date: Mon, 1 Jul 2024 11:20:09 +0000 Subject: [PATCH] Update proto files --- models.proto | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/models.proto b/models.proto index 83100e3..1d1a1c8 100644 --- a/models.proto +++ b/models.proto @@ -595,21 +595,10 @@ message Range { */ message Account { string id = 1; // User's thread id - string name = 2; // User name, that associated with this account - Avatar avatar = 3; // Avatar of a user's account Config config = 4; Status status = 5; Info info = 6; - /** - * Avatar of a user's account. It could be an image or color - */ - message Avatar { - oneof avatar { - Block.Content.File image = 1; // Image of the avatar. Contains the hash to retrieve the image. - string color = 2; // Color of the avatar, used if image not set. - } - } message Config { bool enableDataview = 1; bool enableDebug = 2;