Files
vault/ui/app/controllers/vault/cluster/metrics.js
Chelsea Shaw 2c7cadb731 Ui/pricing metrics params (#10083)
metrics route takes start and end params and passes to the date display field, as well as the route's API call
2020-10-05 16:34:52 -05:00

9 lines
146 B
JavaScript

import Controller from '@ember/controller';
export default Controller.extend({
queryParams: ['start', 'end'],
start: null,
end: null,
});