diff --git a/proto/accounts/v1/accounts_v1.proto b/proto/accounts/v1/accounts_v1.proto index af1ef9a..200ac3b 100644 --- a/proto/accounts/v1/accounts_v1.proto +++ b/proto/accounts/v1/accounts_v1.proto @@ -10,6 +10,8 @@ option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg service AccountsNoAuthService { // Sing in into an existing account rpc SignIn (SignInRequest) returns (google.protobuf.Empty) {} + // Create a new account + rpc SignUp (SignUpRequest) returns (google.protobuf.Empty) {} } /** @@ -32,8 +34,8 @@ message AccountData { } message SignUpRequest { - AccountData data = 1; - AccountPassword password = 2; + string email = 1; + string password = 2; } message SignInRequest {