I am trying to use spring lemon for user handling. I am sending a registration request which gets a 201 response and sends an email to the user, but when the user clicks the link he gets a "Request method 'GET' not supported" response. I looked at the spring lemon code, and in LemonController.java line 104 the verifyUser method uses a @PostMapping annotation. Shouldn't it use a GET annotation? The link from the email creates a GET request, not POST.
Thanks.