mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
* 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
8 lines
245 B
JavaScript
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;
|
|
}
|