diff options
Diffstat (limited to 'src/DevHive.Data/Interfaces/Repositories')
| -rw-r--r-- | src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs b/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs index 4346e9c..5b6ab9e 100644 --- a/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs +++ b/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs @@ -11,6 +11,7 @@ namespace DevHive.Data.Interfaces.Repositories //Read Task<User> GetByUsernameAsync(string username); IEnumerable<User> QueryAll(); + Task<bool> UpdateProfilePicture(Guid userId, string pictureUrl); //Validations Task<bool> DoesEmailExistAsync(string email); |
