From 92ae9a7a1bbdc4dbdc5be62a6acedbdd8adb0db1 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sun, 10 May 2026 19:03:13 +0200 Subject: [PATCH] Separate services again Signed-off-by: Nikolai Rodionov --- proto/accounts/v1/accounts_v1.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) {}