diff options
| author | Victor S <57849063+transtrike@users.noreply.github.com> | 2021-04-02 23:55:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-02 23:55:25 +0300 |
| commit | bad7456b379bcc683431e2279591f7c5227bd55a (patch) | |
| tree | b82e15d10e28759dcd066b38ccdd16c23753b33c /src/Services/DevHive.Services/Interfaces/IUserService.cs | |
| parent | 2448c4d31188aed26605c5e3c282bacc3bd71ae5 (diff) | |
| parent | b0c6c6e1795a1cc8fe82a60ce16a263ab4cad397 (diff) | |
| download | DevHive-bad7456b379bcc683431e2279591f7c5227bd55a.tar DevHive-bad7456b379bcc683431e2279591f7c5227bd55a.tar.gz DevHive-bad7456b379bcc683431e2279591f7c5227bd55a.zip | |
Merge pull request #24 from Team-Kaleidoscope/feature/profile_picture_implementation
- Removed InsertProfilePicture from Service layer (unneeded)
- ReadProfilePicture endpoint implemented
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces/IUserService.cs')
| -rw-r--r-- | src/Services/DevHive.Services/Interfaces/IUserService.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/IUserService.cs b/src/Services/DevHive.Services/Interfaces/IUserService.cs index a55f9dd..da07507 100644 --- a/src/Services/DevHive.Services/Interfaces/IUserService.cs +++ b/src/Services/DevHive.Services/Interfaces/IUserService.cs @@ -45,14 +45,6 @@ namespace DevHive.Services.Interfaces Task<UserServiceModel> UpdateUser(UpdateUserServiceModel updateUserServiceModel); /// <summary> - /// Uploads the given picture and assigns it's link to the user in the database - /// Requires authenticated user - /// </summary> - /// <param name="updateProfilePictureServiceModel">Contains User's Guid and the new picture to be updated</param> - /// <returns>The new picture's URL</returns> - Task<ProfilePictureServiceModel> UpdateProfilePicture(UpdateProfilePictureServiceModel updateProfilePictureServiceModel); - - /// <summary> /// Deletes a user from the database and removes his data entirely /// Requires authenticated user /// </summary> |
