Merge pull request #46 from miniplugin/contribution

관리자 암호 변경 처리 작동 오류 해결
main
eGovFrameSupport 1 year ago committed by GitHub
commit 70a2b3959d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

3
.gitignore vendored

@ -1,3 +1,6 @@
# M2_REPO factorypath
.factorypath
# Compiled class file
*.class

@ -8,7 +8,7 @@ import javax.servlet.http.HttpServletRequest;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import egovframework.com.cmm.LoginVO;
@ -41,7 +41,7 @@ import lombok.extern.slf4j.Slf4j;
* ------- -------- ---------------------------
* 2023.04.15
* 2023.04.20
*
* 2024.07.17 @RequestParam @RequestBody
* </pre>
*/
@Slf4j
@ -104,7 +104,7 @@ public class EgovSiteManagerApiController {
ref = "#/components/schemas/passwordMap"),
style = ParameterStyle.FORM,
explode = Explode.TRUE
) @RequestParam Map<String, String> param, HttpServletRequest request,
) @RequestBody Map<String, String> param, HttpServletRequest request,
@Parameter(hidden = true) @AuthenticationPrincipal LoginVO user) throws Exception {
ResultVO resultVO = new ResultVO();

Loading…
Cancel
Save