mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 10:12:35 +00:00
13 lines
361 B
JavaScript
13 lines
361 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
|
|
export default class PkiTidyModel extends Model {
|
|
@attr('boolean', { defaultValue: false }) tidyCertStore;
|
|
@attr('boolean', { defaultValue: false }) tidyRevocationQueue;
|
|
@attr('string', { defaultValue: '72h' }) safetyBuffer;
|
|
}
|