add ability to get user based on username or email address

This commit is contained in:
sbwalker
2023-08-13 08:35:03 -04:00
parent c344eedb12
commit c2acd010ce
7 changed files with 46 additions and 9 deletions

View File

@ -11,6 +11,7 @@ namespace Oqtane.Repository
User GetUser(int userId);
User GetUser(int userId, bool tracking);
User GetUser(string username);
User GetUser(string username, string email);
void DeleteUser(int userId);
}
}