Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mosip 25778 technical story update the existing authentication audit end point to send hash of individual id taken from the session and also pass id type #705

Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b2430d4
moved id hash generation method to utility
Jan 13, 2023
8829671
took id from session
Jan 13, 2023
9c48bc3
Merge branch 'develop' of https://github.com/mosip/resident-services …
Jan 13, 2023
8a01f79
added unauthenticated API for audit
Jan 13, 2023
6fefe7b
MOSIP-25780 added junit
Jan 14, 2023
bf6a62a
MOSIP-25780 added junit for if condition
Jan 14, 2023
78807e5
Merge branch 'develop' of https://github.com/mosip/resident-services …
Jan 14, 2023
4787905
fixed error message
Jan 16, 2023
ee6c689
Merge branch 'develop' of https://github.com/mosip/resident-services.…
Jan 17, 2023
2e1efef
returned correct id and 400 status code
Jan 17, 2023
28b4e42
created super exception classes to extend
Jan 17, 2023
53945b8
removed unused imports
Jan 17, 2023
31660fb
renamed (added prefix base)
Jan 17, 2023
54d95b1
naming fixes
Jan 17, 2023
1df13a3
configured exceptions with new exception base classes
Jan 17, 2023
df394f0
fixed error response
Jan 17, 2023
ef3ba74
fixed error response on validation
Jan 17, 2023
07609af
Merge branch 'develop' of https://github.com/mosip/resident-services …
Jan 18, 2023
a651c21
moved getClientIp method to utility and used in audit API
Jan 18, 2023
6e80272
added junit test cases
Jan 18, 2023
6727cde
renamed audit request dto
Jan 18, 2023
ccec709
Merge branch 'develop' of https://github.com/mosip/resident-services …
Jan 18, 2023
03c8685
resolved merge conflict
Jan 19, 2023
bb8a021
removed utilitiy
Jan 19, 2023
d0ded09
Merge branch 'develop' of https://github.com/mosip/resident-services.…
Jan 20, 2023
858ccb2
fixed schema sache issue and added junit
Jan 24, 2023
9f45d1f
Merge branch 'develop' of https://github.com/mosip/resident-services …
Jan 24, 2023
d00f664
removed input required check
Jan 24, 2023
c771ee8
Merge branch 'develop' of https://github.com/mosip/resident-services …
Jan 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ private List<String> doGetUiSchemaFilteredInputAttributes(String schemaType) thr
if(identityObj instanceof List) {
List<Map<String, Object>> identityList = (List<Map<String, Object>>) identityObj;
List<String> uiSchemaFilteredInputAttributesList = identityList.stream()
.filter(map -> Boolean.valueOf(String.valueOf(map.get(INPUT_REQUIRED))))
.filter(map -> !FILEUPLOAD.equals(map.get(CONTROL_TYPE)))
.flatMap(map -> {
String attribName = (String)map.get(ID);
Expand Down