vault/ui/app/models/clients/monthly.js
claire bontempo d14ee7d867
UI/Current month view (#13788)
* add timestamp to attribution

* create usage stat component

* updates stat text boxes

* remove flex-header css

* remove comment

* add empty state if no data

* update monthly serializer

* remove empty state - unnecessary
2022-01-27 10:59:08 -08:00

8 lines
245 B
JavaScript

import Model, { attr } from '@ember-data/model';
// ARG TODO copied from before, modify for what you need
export default class Monthly extends Model {
@attr('string') responseTimestamp;
@attr('array') byNamespace;
@attr('object') total;
}