mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-31 18:48:08 +00:00
metrics route takes start and end params and passes to the date display field, as well as the route's API call
9 lines
146 B
JavaScript
9 lines
146 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default Controller.extend({
|
|
queryParams: ['start', 'end'],
|
|
|
|
start: null,
|
|
end: null,
|
|
});
|