Mirrored from GitHub github.com/roostorg/osprey
0

Configure Feed

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

osprey / osprey_ui / src / Constants.tsx
921 B 35 lines
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 FEATURES: '/features', 8 RULES: '/rules', 9 SAVED_QUERY: '/saved-query/:savedQueryId', 10 SAVED_QUERY_LATEST: '/saved-query/:savedQueryId/latest', 11 BULK_JOB_HISTORY: '/bulk-job-history', 12 RULES_VISUALIZER: '/rules-visualizer', 13 BULK_ACTION: '/bulk-action', 14}; 15 16export const DATE_FORMAT = 'M/D/YYYY h:mm:ssa zz'; 17 18// These should mirror the `--status-primary` colors in Colors.module.css 19export const StatusColors = { 20 SUCCESS: '#3e7025', 21 ERROR: '#b23a32', 22 NEUTRAL: '#45464a', 23}; 24 25// These should mirror colors in `Colors.module.css` 26export const Colors = { 27 BACKGROUND_SECONDARY_ALT: '#f2f3f5', 28 29 TEXT_LIGHT_PRIMARY: '#45464a', 30 31 ICON_PRIMARY: '#535a65', 32 ICON_MUTED: '#9aa1ac', 33}; 34 35export const BULK_LABEL_DEFAULT_LIMIT = 100000;