Files
vault/ui/app/models/pki/tidy.js
2023-04-10 23:07:26 -07:00

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;
}