From 239ffcd6c606ca1df080492744d5b11923bca607 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Thu, 30 Apr 2026 14:51:36 +0200 Subject: [PATCH] Switch to SSO kind of login Signed-off-by: Nikolai Rodionov --- proto/accounts/v1/accounts_v1.proto | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/proto/accounts/v1/accounts_v1.proto b/proto/accounts/v1/accounts_v1.proto index 1552235..27bec35 100644 --- a/proto/accounts/v1/accounts_v1.proto +++ b/proto/accounts/v1/accounts_v1.proto @@ -8,14 +8,8 @@ option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg * Service for handling accounts that do not require authentication */ service AccountsNoAuthService { - // Create a new user - rpc SignUp (SignUpRequest) returns (google.protobuf.Empty) {} // Sing in into an existing account rpc SignIn (SignInRequest) returns (google.protobuf.Empty) {} - // Reset the password, if it was lost - rpc ResetPassword (ResetPasswordRequest) returns (google.protobuf.Empty) {} - // Set the new password after reset - rpc NewPassword (NewPasswordRequest) returns (google.protobuf.Empty) {} } /** @@ -43,8 +37,7 @@ message SignUpRequest { } message SignInRequest { - AccountData data = 1; - AccountPassword password = 2; + string code = 1; }; message ResetPasswordRequest {