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
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
export default class Activity extends Model {
|
|
@attr('string') responseTimestamp;
|
|
@attr('array') byNamespace;
|
|
@attr('string') endTime;
|
|
@attr('string') startTime;
|
|
@attr('object') total;
|
|
}
|