Skip to content

Commit 58e1d97

Browse files
authored
Merge branch 'main' into TrimOrgData
2 parents 85e6e3c + 72f8eb1 commit 58e1d97

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v2.38.5 - 2023-08-18
2+
3+
[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.38.4...v2.38.5)
4+
5+
- [#6873](https://github.com/ORCID/ORCID-Source/pull/6873): send-deactivate-account.json should be a POST action, since we are as…
6+
17
## v2.38.4 - 2023-08-17
28

39
[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.38.3...v2.38.4)

orcid-web/src/main/java/org/orcid/frontend/web/controllers/ManageProfileController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ public ModelAndView confirmDeactivateOrcidAccount(HttpServletRequest request, Ht
515515
return new Errors();
516516
}
517517

518-
@RequestMapping(value = "/send-deactivate-account.json", method = RequestMethod.GET)
518+
@RequestMapping(value = "/send-deactivate-account.json", method = RequestMethod.POST)
519519
public @ResponseBody String startDeactivateOrcidAccount(HttpServletRequest request) {
520520
String currentUserOrcid = getCurrentUserOrcid();
521521
recordEmailSender.sendOrcidDeactivateEmail(currentUserOrcid);

0 commit comments

Comments
 (0)