19 lines
397 B
JavaScript
19 lines
397 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
|
|
export default class PkiCrlModel extends Model {
|
|
// This model uses the backend value as the model ID
|
|
get useOpenAPI() {
|
|
return true;
|
|
}
|
|
|
|
@attr('string') expiry;
|
|
@attr('boolean') autoRebuild;
|
|
@attr('string') ocspExpiry;
|
|
@attr('boolean') ocspDisable;
|
|
}
|