fix enum values

This commit is contained in:
Gsk54
2023-01-25 18:13:26 +01:00
parent 02eae16665
commit d69423b342
8 changed files with 22 additions and 39 deletions

View File

@@ -17,16 +17,11 @@ message AuthenticationByUsernamePassword {
string password = 2;
}
enum Type {
EMAIL = 0;
PHONE = 1;
}
message Authentication {
string uuid = 1;
string username = 2;
string password = 3;
Type type = 4;
string type = 4;
}
message Password {
@@ -37,7 +32,7 @@ message Password {
message Username {
string uuid = 1;
string username = 2;
Type type = 3;
string type = 3;
}
message Uuid {