-
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.
Merge pull request #25 from sympoll/group-profile-pictures
Group profile pictures
- Loading branch information
Showing
8 changed files
with
118 additions
and
16 deletions.
There are no files selected for viewing
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
.../Sympoll/groupmanagementservice/dto/request/media/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.MTAPizza.Sympoll.groupmanagementservice.dto.request.media; | ||
|
||
public record GroupUpdateProfileBannerUrlRequest( | ||
String groupId, | ||
String profileBannerUrl | ||
) { | ||
} |
7 changes: 7 additions & 0 deletions
7
...Sympoll/groupmanagementservice/dto/request/media/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.MTAPizza.Sympoll.groupmanagementservice.dto.request.media; | ||
|
||
public record GroupUpdateProfilePictureUrlRequest( | ||
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
9 changes: 9 additions & 0 deletions
9
...a/com/MTAPizza/Sympoll/groupmanagementservice/exception/group/GroupNotFoundException.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,9 @@ | ||
package com.MTAPizza.Sympoll.groupmanagementservice.exception.group; | ||
|
||
import java.util.UUID; | ||
|
||
public class GroupNotFoundException extends RuntimeException { | ||
public GroupNotFoundException(String groupId) { | ||
super("Group with ID '" + groupId + "' was not found"); | ||
} | ||
} |
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
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