c5e9c15e49
* append -old to non-engine pki models * revert old file name * remove -engine from all pki component, model, adapter and serializer files * add md file explaining pki naming
11 lines
312 B
JavaScript
11 lines
312 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
|
|
export default class PkiCertificateModel extends Model {
|
|
@attr('string', { readOnly: true }) backend;
|
|
@attr('string') commonName;
|
|
@attr('string') issueDate;
|
|
@attr('string') serialNumber;
|
|
@attr('string') notAfter;
|
|
@attr('string') notBeforeDuration;
|
|
}
|