Extend PostgreSQL implementation and unit tests on MongoDB storage

This commit is contained in:
2023-05-02 00:34:33 +02:00
parent 1bf02aa132
commit c6ba00b74f
18 changed files with 870 additions and 752 deletions

View File

@@ -12,16 +12,17 @@ message Account {
}
message AccountAuth {
LocalAuth local = 7;
optional LocalAuth local = 7;
//TODO SSO
}
message LocalAuth {
string username = 10;
optional string username = 10;
string password = 11;
string email = 12;
string phone_number = 13;
Validation email_validation = 14;
Validation phone_number_validation = 15;
optional string email = 12;
optional string phone_number = 13;
optional Validation email_validation = 14;
optional Validation phone_number_validation = 15;
}
message Validation {