From 8079b25fef6d1cfc4e36b52eaaf7bf5969ef6df3 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 1 Apr 2026 05:09:49 +0300 Subject: [PATCH] feat: add avatar in users service --- proto/users.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/users.proto b/proto/users.proto index 73a2202..4faaef3 100644 --- a/proto/users.proto +++ b/proto/users.proto @@ -35,6 +35,7 @@ message User { message PatchUserRequest { string user_id = 1; optional string name = 2; + optional string avatar = 3; } message PatchUserResponse { bool ok = 1;