From e9fe803c35832f16541b1ce5e6e2974c3e2606e1 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Thu, 7 May 2026 22:23:37 +0200 Subject: [PATCH] Password and username for signin Signed-off-by: Nikolai Rodionov --- proto/accounts/v1/accounts_v1.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/accounts/v1/accounts_v1.proto b/proto/accounts/v1/accounts_v1.proto index 27c0349..1d38bdb 100644 --- a/proto/accounts/v1/accounts_v1.proto +++ b/proto/accounts/v1/accounts_v1.proto @@ -40,8 +40,8 @@ message SignUpRequest { } message SignInRequest { - string code = 1; - string verifier = 2; + string email = 1; + string password = 2; }; message ResetPasswordRequest {