aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Repositories
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Repositories')
-rw-r--r--src/DevHive.Data/Repositories/UserRepository.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/DevHive.Data/Repositories/UserRepository.cs b/src/DevHive.Data/Repositories/UserRepository.cs
index b46198c..466b123 100644
--- a/src/DevHive.Data/Repositories/UserRepository.cs
+++ b/src/DevHive.Data/Repositories/UserRepository.cs
@@ -38,6 +38,7 @@ namespace DevHive.Data.Repositories
.Include(x => x.Languages)
.Include(x => x.Technologies)
.Include(x => x.Posts)
+ .Include(x => x.ProfilePicture)
.FirstOrDefaultAsync(x => x.Id == id);
}
@@ -48,6 +49,7 @@ namespace DevHive.Data.Repositories
.Include(x => x.Languages)
.Include(x => x.Technologies)
.Include(x => x.Posts)
+ .Include(x => x.ProfilePicture)
.FirstOrDefaultAsync(x => x.UserName == username);
}
#endregion
@@ -93,6 +95,14 @@ namespace DevHive.Data.Repositories
return await this.SaveChangesAsync();
}
+
+ public async Task<bool> UpdateProfilePicture(Guid userId, string pictureUrl) {
+ User user = await this.GetByIdAsync(userId);
+
+ user.ProfilePicture.PictureURL = pictureUrl;
+
+ return await this.SaveChangesAsync();
+ }
#endregion
#region Validations