From d879af77ca6cca8f4be2feae0d1a5fbacca9b0fa Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 23 Oct 2022 22:57:35 +0200 Subject: [PATCH] Add server deployment stuff --- Pal.Common/Protos/account.proto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Pal.Common/Protos/account.proto b/Pal.Common/Protos/account.proto index 059eddf..5186276 100644 --- a/Pal.Common/Protos/account.proto +++ b/Pal.Common/Protos/account.proto @@ -35,6 +35,13 @@ message LoginReply { bool success = 1; string authToken = 2; google.protobuf.Timestamp expiresAt = 3; + LoginError error = 4; +} + +enum LoginError { + LOGIN_ERROR_NONE = 0; + LOGIN_ERROR_UNKNOWN = 1; + LOGIN_ERROR_INVALID_ACCOUNT_ID = 2; } message VerifyRequest {