-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ase-101 <[email protected]>
- Loading branch information
Showing
101 changed files
with
13,302 additions
and
22,440 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ on: | |
- MOSIP* | ||
- release* | ||
paths: | ||
- 'helm/**' | ||
- './helm/**' | ||
|
||
jobs: | ||
chart-lint-publish: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
esignet-core/src/main/java/io/mosip/esignet/core/dto/AuthRequestV2.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package io.mosip.esignet.core.dto; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class AuthRequestV2 extends AuthRequest { | ||
|
||
private String captchaToken; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,6 @@ public class AuditDTO { | |
String linkedTransactionId; | ||
String nonce; | ||
String state; | ||
|
||
String idType; | ||
} |
66 changes: 39 additions & 27 deletions
66
esignet-integration-api/src/main/java/io/mosip/esignet/api/util/Action.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,43 @@ | ||
package io.mosip.esignet.api.util; | ||
|
||
public enum Action { | ||
OIDC_CLIENT_CREATE, | ||
OIDC_CLIENT_UPDATE, | ||
OAUTH_CLIENT_CREATE, | ||
OAUTH_CLIENT_UPDATE, | ||
GET_OAUTH_DETAILS, | ||
TRANSACTION_STARTED, | ||
SEND_OTP, | ||
AUTHENTICATE, | ||
GET_AUTH_CODE, | ||
GENERATE_TOKEN, | ||
GET_USERINFO, | ||
DO_KYC_AUTH, | ||
DO_KYC_EXCHANGE, | ||
GET_CERTIFICATE, | ||
UPLOAD_CERTIFICATE, | ||
LINK_CODE, | ||
LINK_TRANSACTION, | ||
LINK_STATUS, | ||
LINK_AUTHENTICATE, | ||
SAVE_CONSENT, | ||
LINK_SEND_OTP, | ||
LINK_AUTH_CODE, | ||
GET_USER_CONSENT, | ||
SAVE_USER_CONSENT, | ||
UPDATE_USER_CONSENT, | ||
DELETE_USER_CONSENT, | ||
VC_ISSUANCE | ||
OIDC_CLIENT_CREATE("client-mgmt-service"), | ||
OIDC_CLIENT_UPDATE("client-mgmt-service"), | ||
OAUTH_CLIENT_CREATE("client-mgmt-service"), | ||
OAUTH_CLIENT_UPDATE("client-mgmt-service"), | ||
GET_OAUTH_DETAILS("esignet-service"), | ||
TRANSACTION_STARTED("esignet-service"), | ||
SEND_OTP("esignet-service"), | ||
AUTHENTICATE("esignet-service"), | ||
GET_AUTH_CODE("esignet-service"), | ||
GENERATE_TOKEN("esignet-service"), | ||
GET_USERINFO("esignet-service"), | ||
DO_KYC_AUTH("esignet-service"), | ||
DO_KYC_EXCHANGE("esignet-service"), | ||
GET_CERTIFICATE("keymanager"), | ||
UPLOAD_CERTIFICATE("keymanager"), | ||
LINK_CODE("esignet-service"), | ||
LINK_TRANSACTION("esignet-service"), | ||
LINK_STATUS("esignet-service"), | ||
LINK_AUTHENTICATE("esignet-service"), | ||
SAVE_CONSENT("consent-service"), | ||
LINK_SEND_OTP("esignet-service"), | ||
LINK_AUTH_CODE("esignet-service"), | ||
GET_USER_CONSENT("consent-service"), | ||
SAVE_USER_CONSENT("consent-service"), | ||
UPDATE_USER_CONSENT("consent-service"), | ||
DELETE_USER_CONSENT("consent-service"), | ||
SEND_BINDING_OTP("key-binding"), | ||
KEY_BINDING("key-binding"), | ||
VC_ISSUANCE("vci-service"); | ||
|
||
String module; | ||
|
||
Action(String module) { | ||
this.module = module; | ||
} | ||
|
||
public String getModule() { | ||
return this.module; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.