-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EPMRPP-95844 implement get invitations by id #2134
Conversation
grabsefx
commented
Dec 25, 2024
- implemented new endpoint
- removed old one
@@ -79,6 +80,17 @@ void createInvitationByAdmin() throws Exception { | |||
|
|||
assertEquals(InvitationStatus.PENDING, invitation.getStatus()); | |||
|
|||
var storedInvitationString = mockMvc.perform(get(INVITATIONS_ENDPOINT + "/" + invitation.getId()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 101).
import java.util.UUID; | ||
import java.util.function.Function; | ||
|
||
public class InvitationConverter { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a Javadoc comment.
f7de48f
to
344f221
Compare