mirror of
https://gitlab.com/mobicoop/v3/service/auth.git
synced 2026-01-08 12:02:41 +00:00
fix enum values
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user