Extend PostgreSQL implementation and unit tests on MongoDB storage
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user