-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On update profile pictures endpoints, will return the old url in a ne…
…w DTO.
- Loading branch information
Showing
8 changed files
with
43 additions
and
25 deletions.
There are no files selected for viewing
10 changes: 1 addition & 9 deletions
10
src/main/java/com/MTAPizza/Sympoll/groupmanagementservice/client/MediaClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...request/media/GroupDataDeleteRequest.java → ...equest/delete/GroupDataDeleteRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/GroupUpdateProfileBannerUrlRequest.java → ...e/GroupUpdateProfileBannerUrlRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../GroupUpdateProfilePictureUrlRequest.java → .../GroupUpdateProfilePictureUrlRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...agementservice/dto/request/media/response/update/GroupUpdateProfileBannerUrlResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.MTAPizza.Sympoll.groupmanagementservice.dto.request.media.response.update; | ||
|
||
public record GroupUpdateProfileBannerUrlResponse( | ||
String groupId, | ||
String profileBannerUrl | ||
) { | ||
} |
7 changes: 7 additions & 0 deletions
7
...gementservice/dto/request/media/response/update/GroupUpdateProfilePictureUrlResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.MTAPizza.Sympoll.groupmanagementservice.dto.request.media.response.update; | ||
|
||
public record GroupUpdateProfilePictureUrlResponse( | ||
String groupId, | ||
String profilePictureUrl | ||
) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters