From 73065ccd355ade24dd26b2ac064351bd4f533ac8 Mon Sep 17 00:00:00 2001 From: Thilina Shashimal Senarath Date: Fri, 20 Sep 2024 13:07:31 +0530 Subject: [PATCH] fix device_success.do error --- .changeset/long-trainers-burn.md | 5 +++++ .../resources/web.xml.j2 | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/long-trainers-burn.md diff --git a/.changeset/long-trainers-burn.md b/.changeset/long-trainers-burn.md new file mode 100644 index 00000000000..5845c432879 --- /dev/null +++ b/.changeset/long-trainers-burn.md @@ -0,0 +1,5 @@ +--- +"@wso2is/identity-apps-core": patch +--- + +Fix invalid device success jsp file diff --git a/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/resources/web.xml.j2 b/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/resources/web.xml.j2 index cac186cc993..8c95c6d2a3d 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/resources/web.xml.j2 +++ b/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/resources/web.xml.j2 @@ -326,7 +326,7 @@ {"name": "authenticate.do", "jsp": "/authenticate.jsp", "url": "/authenticate.do"}, {"name": "error.do", "jsp": "/generic-exception-response.jsp", "url": "/error.do"}, {"name": "device.do", "jsp": "/enter-user-code.jsp", "url": "/device.do"}, - {"name": "device_success.do", "jsp": "/device_success.jsp", "url": "/device_success.do"}, + {"name": "device_success.do", "jsp": "/device-success.jsp", "url": "/device_success.do"}, {"name": "totp_enroll.do", "jsp": "/enableTOTP.jsp", "url": "/totp_enroll.do"}, {"name": "totp.do", "jsp": "/totp.jsp", "url": "/totp.do"}, {"name": "totp_error.do", "jsp": "/totpError.jsp", "url": "/totp_error.do"},