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

UI/ PKI UI Redesign #12541

Merged
merged 41 commits into from
Oct 4, 2021
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
f9b5e69
adds padding
hellobontempo Aug 2, 2021
692a2e1
Merge branch 'main' into ui/info-table-row-component
hellobontempo Sep 8, 2021
7167835
WIP// add attributes
hellobontempo Sep 13, 2021
25f5d86
Merge branch 'main' into ui/pki-cert-parse
hellobontempo Sep 13, 2021
308857a
Merge branch 'ui/info-table-row-component' into ui/pki-cert-parse
hellobontempo Sep 13, 2021
2e3506d
installs node-forge
hellobontempo Sep 13, 2021
870609b
correctly displays and formats cert metadata
hellobontempo Sep 13, 2021
64aa1cc
removes labels
hellobontempo Sep 14, 2021
5e63907
adds comment
hellobontempo Sep 14, 2021
bfdedb5
updates comment:
hellobontempo Sep 14, 2021
4c607bf
uses helper in hbs file
hellobontempo Sep 14, 2021
cf30e61
removes date-fns from serializer, reorders attrs
hellobontempo Sep 15, 2021
698387e
adds named arg to helper
hellobontempo Sep 15, 2021
af10d26
adds helper and implements try/catch so template won't error
hellobontempo Sep 15, 2021
f18486d
fixes helper
hellobontempo Sep 15, 2021
2ee0978
removes method from pki serializer
hellobontempo Sep 15, 2021
8e9f906
creates pki-ca serializer
hellobontempo Sep 15, 2021
fff701f
:
hellobontempo Sep 15, 2021
4dd59e2
adds attrs to pki-ca
hellobontempo Sep 16, 2021
3f0799a
removes changes from pki-ca
hellobontempo Sep 16, 2021
1890a46
adds todos
hellobontempo Sep 16, 2021
39fb068
fixes catch and helper erroring
hellobontempo Sep 17, 2021
3246355
removes try
hellobontempo Sep 17, 2021
7a9918f
pki-ca-cert displays common name, issue & expiry date
hellobontempo Sep 17, 2021
6776902
adds comment
hellobontempo Sep 17, 2021
d236f43
removes pki-ca serializer, tests still broken
hellobontempo Sep 17, 2021
96102c4
clean up
hellobontempo Sep 20, 2021
48d29ca
removes comments
hellobontempo Sep 20, 2021
d61da35
WIP// edits tests, need to fix parsing if setSignedIntermediate
hellobontempo Sep 20, 2021
12ceb9b
adds changelog
hellobontempo Sep 21, 2021
fdd48c6
updates hbs
hellobontempo Sep 21, 2021
370ab1e
fixes tests
hellobontempo Sep 21, 2021
89908ba
adds settled()
hellobontempo Sep 21, 2021
a9b73d8
change error to return
hellobontempo Sep 27, 2021
b0396f3
alphabetizes some attrs
hellobontempo Sep 27, 2021
6cf6704
alphabetizes some attrs
hellobontempo Sep 27, 2021
075e979
cleanup, remove comments, etc
hellobontempo Sep 27, 2021
dfc351d
adds test for date helper
hellobontempo Sep 27, 2021
98a6e96
Merge branch 'main' into ui/pki-cert-parse
hellobontempo Sep 27, 2021
6077f21
removes log
hellobontempo Sep 28, 2021
79dc35e
test
hellobontempo Sep 28, 2021
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
Prev Previous commit
Next Next commit
alphabetizes some attrs
hellobontempo committed Sep 27, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 6cf6704f84be31880fdbe428b64b8c7aeec06c72
5 changes: 2 additions & 3 deletions ui/app/models/pki-certificate.js
Original file line number Diff line number Diff line change
@@ -15,7 +15,6 @@ export default Model.extend({
readOnly: true,
}),
DISPLAY_FIELDS: computed(function() {
// check here for ordering
return [
'certificate',
'commonName',
@@ -30,15 +29,15 @@ export default Model.extend({
];
}),

issueDate: attr('string'),
commonName: attr('string'),
expiryDate: attr('string', {
label: 'Expiration date',
}),
issueDate: attr('string'),
role: attr('object', {
readOnly: true,
}),
revocationTime: attr('number'),
commonName: attr('string'),
altNames: attr('string', {
label: 'DNS/Email Subject Alternative Names (SANs)',
}),