Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 4x 4x 4x | import { RequestCategory } from '@/types/request';
export const DEEP_LINK_PREFIX = 'flash://';
export const DEEP_LINK_PATHS = {
REQUEST_DETAIL: 'request/detail',
REALLOCATION: 'request/reallocation',
TIME_OFF: 'request/time-off',
MEAL_RESERVATION: 'request/meal-reservation',
HOME: 'home',
} as const;
export const CATEGORY_DEEP_LINK_MAP: Record<string, string> = {
[RequestCategory.REALLOCATION]: `${DEEP_LINK_PREFIX}${DEEP_LINK_PATHS.REALLOCATION}`,
[RequestCategory.TIME_OFF]: `${DEEP_LINK_PREFIX}${DEEP_LINK_PATHS.TIME_OFF}`,
[RequestCategory.MEAL_RESERVATION]: `${DEEP_LINK_PREFIX}${DEEP_LINK_PATHS.MEAL_RESERVATION}`,
};
|