From 7e9a30a974632a66985dbb7c7c2db815cde3a2f0 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Tue, 28 Apr 2026 13:06:51 +0200 Subject: [PATCH] Fix the service name for accounts auth Signed-off-by: Nikolai Rodionov --- proto/accounts/v1/accounts_v1.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/accounts/v1/accounts_v1.proto b/proto/accounts/v1/accounts_v1.proto index 67b14c2..48cff34 100644 --- a/proto/accounts/v1/accounts_v1.proto +++ b/proto/accounts/v1/accounts_v1.proto @@ -26,7 +26,7 @@ service AccountsNoAuthService { * Service for handling accounts that do require authentication * Tokens should be sent via metadata, so the service is able to authenticate a user for a request */ -service AccountAuthService { +service AccountsAuthService { // Is email for the current account verified rpc IsEmailVerified (IsEmailVerifiedRequest) returns (IsEmailVerifiedResponse) {} }