27bb03bbc0
* adding copyright header * fix fmt and a test
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
import { computed } from '@ember/object';
|
|
import attachCapabilities from 'vault/lib/attach-capabilities';
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
import { apiPath } from 'vault/macros/lazy-capabilities';
|
|
|
|
const M = Model.extend({
|
|
queriesAvailable: attr('boolean'), // true only if historical data exists, will be false if there is only current month data
|
|
retentionMonths: attr('number', {
|
|
label: 'Retention period',
|
|
subText: 'The number of months of activity logs to maintain for client tracking.',
|
|
}),
|
|
enabled: attr('string', {
|
|
editType: 'boolean',
|
|
trueValue: 'On',
|
|
falseValue: 'Off',
|
|
label: 'Enable usage data collection',
|
|
helpText:
|
|
'Enable or disable client tracking. Keep in mind that disabling tracking will delete the data for the current month.',
|
|
}),
|
|
|
|
configAttrs: computed(function () {
|
|
const keys = ['enabled', 'retentionMonths'];
|
|
return expandAttributeMeta(this, keys);
|
|
}),
|
|
});
|
|
|
|
export default attachCapabilities(M, {
|
|
configPath: apiPath`sys/internal/counters/config`,
|
|
});
|