Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 33 lines 877 B view raw
1export const Routes = { 2 HOME: '/', 3 QUERY_HISTORY: '/query-history', 4 SAVED_QUERIES: '/saved-queries', 5 DOCS_UDFS: '/docs/udfs', 6 ENTITY: '/entity/:entityType/:entityId', 7 SAVED_QUERY: '/saved-query/:savedQueryId', 8 SAVED_QUERY_LATEST: '/saved-query/:savedQueryId/latest', 9 BULK_JOB_HISTORY: '/bulk-job-history', 10 RULES_VISUALIZER: '/rules-visualizer', 11 BULK_ACTION: '/bulk-action', 12}; 13 14export const DATE_FORMAT = 'M/D/YYYY h:mm:ssa zz'; 15 16// These should mirror the `--status-primary` colors in Colors.module.css 17export const StatusColors = { 18 SUCCESS: '#3e7025', 19 ERROR: '#b23a32', 20 NEUTRAL: '#45464a', 21}; 22 23// These should mirror colors in `Colors.module.css` 24export const Colors = { 25 BACKGROUND_SECONDARY_ALT: '#f2f3f5', 26 27 TEXT_LIGHT_PRIMARY: '#45464a', 28 29 ICON_PRIMARY: '#535a65', 30 ICON_MUTED: '#9aa1ac', 31}; 32 33export const BULK_LABEL_DEFAULT_LIMIT = 100000;