1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/Reporting/constants.js
Fredrik Strand Oseberg 85a7c55fdf Feat/group by projects (#308)
This PR adds support for projects as a first class citizen, and toggling features on in different environments.
2021-07-07 11:04:36 +02:00

12 lines
284 B
JavaScript

/* SORT TYPES */
export const NAME = 'name';
export const LAST_SEEN = 'lastSeen';
export const CREATED = 'created';
export const EXPIRED = 'expired';
export const STATUS = 'status';
export const REPORT = 'report';
/* DAYS */
export const FOURTYDAYS = 40;
export const SEVENDAYS = 7;