Closed vapadwal closed 6 years ago
This might break existing code on the client side as people might had to change their client in order to send a GET request. Why not supporting both?
RequestMapping(value = "/login**", method = { RequestMethod.GET, RequestMethod.POST})
@ivanderk thanks for your smart suggestion :)
PR #678 was merged, hence done.
LoginController#login in the application template has @RequestMapping(value = "/login*", method = RequestMethod.GET) which fails* with the Angular 6 template as this uses POST for login
Changes required in LoginController RequestMapping(value = "/login**", method = { RequestMethod.POST })