6c7dee4824
* clean up activity serailizer * fix line chart so only plot months with data * cleanup monthly serializer * account for empty months in vertical bar chart * tidy version upgrade info * fix version history model typo * extract const into helper * add upgrade indicator to line chart * fix tests * add todos
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
export default class Activity extends Model {
|
|
@attr('array') byMonth;
|
|
@attr('array') byNamespace;
|
|
@attr('object') total;
|
|
@attr('array') formattedEndTime;
|
|
@attr('array') formattedStartTime;
|
|
@attr('string') startTime;
|
|
@attr('string') endTime;
|
|
@attr('string') responseTimestamp;
|
|
}
|