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 {