-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MOSIP-36144: UI Development Partner Admin Tabular View of uploaded ce…
…rtificates Signed-off-by: Anil_Kumar_Majji <[email protected]>
- Loading branch information
1 parent
c6f0f42
commit 6773e53
Showing
8 changed files
with
362 additions
and
268 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
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
12 changes: 12 additions & 0 deletions
12
pmp-revamp-ui/src/pages/admin/certificates/IntermediateRootTrustCertificatesList.js
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,12 @@ | ||
import RootCertificateList from './RootCertificateList'; | ||
|
||
function IntermediateRootTrustCertificatesList() { | ||
return ( | ||
<RootCertificateList | ||
certificateType='intermediate' | ||
uploadCertificateButtonName='rootTrustCertificate.UploadCertBtn' | ||
/> | ||
) | ||
} | ||
|
||
export default IntermediateRootTrustCertificatesList; |
325 changes: 325 additions & 0 deletions
325
pmp-revamp-ui/src/pages/admin/certificates/RootCertificateList.js
Large diffs are not rendered by default.
Oops, something went wrong.
265 changes: 0 additions & 265 deletions
265
pmp-revamp-ui/src/pages/admin/certificates/RootTrustCertificateList.js
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
pmp-revamp-ui/src/pages/admin/certificates/RootTrustCertificatesList.js
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,13 @@ | ||
import RootCertificateList from "./RootCertificateList"; | ||
|
||
function RootTrustCertificatesList() { | ||
|
||
return ( | ||
<RootCertificateList | ||
certificateType = 'root' | ||
uploadCertificateButtonName='rootTrustCertificate.UploadCertBtn' | ||
/> | ||
) | ||
} | ||
|
||
export default RootTrustCertificatesList; |