diff --git a/proto/accounts/v1/accounts_v1.proto b/proto/accounts/v1/accounts_v1.proto index b9f2f9f..ef6b27e 100644 --- a/proto/accounts/v1/accounts_v1.proto +++ b/proto/accounts/v1/accounts_v1.proto @@ -7,11 +7,14 @@ option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg /** * Service for handling accounts that do not require authentication */ -service AccountManagementService { +service PublicAccountsService { // Sing in into an existing account rpc SignIn (SignInRequest) returns (google.protobuf.Empty) {} // Create a new account rpc SignUp (SignUpRequest) returns (google.protobuf.Empty) {} +} + +service AccountsService { // Is email for the current account verified rpc IsEmailVerified (IsEmailVerifiedRequest) returns (IsEmailVerifiedResponse) {} rpc RefreshSession (google.protobuf.Empty) returns (google.protobuf.Empty) {}