-
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. (#1017) * MOSIP-36144: UI Development Partner Admin Tabular View of uploaded certificates Signed-off-by: Anil_Kumar_Majji <[email protected]> * MOSIP-36144: UI Development Partner Admin Tabular View of uploaded certificates Signed-off-by: Anil_Kumar_Majji <[email protected]> * MOSIP-36144: UI Development Partner Admin Tabular View of uploaded certificates Signed-off-by: Anil_Kumar_Majji <[email protected]> --------- Signed-off-by: Anil_Kumar_Majji <[email protected]>
- Loading branch information
1 parent
c6f0f42
commit bebdcc6
Showing
8 changed files
with
360 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
325 changes: 325 additions & 0 deletions
325
pmp-revamp-ui/src/pages/admin/certificates/CertificatesList.js
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
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,11 @@ | ||
import CertificatesList from './CertificatesList'; | ||
|
||
function IntermediateRootTrustCertificatesList() { | ||
return ( | ||
<CertificatesList | ||
certificateType='intermediate' | ||
/> | ||
) | ||
} | ||
|
||
export default IntermediateRootTrustCertificatesList; |
265 changes: 0 additions & 265 deletions
265
pmp-revamp-ui/src/pages/admin/certificates/RootTrustCertificateList.js
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
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,12 @@ | ||
import CertificatesList from "./CertificatesList"; | ||
|
||
function RootTrustCertificatesList() { | ||
|
||
return ( | ||
<CertificatesList | ||
certificateType = 'root' | ||
/> | ||
) | ||
} | ||
|
||
export default RootTrustCertificatesList; |