You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pages.js 1022B

12345678910111213141516171819202122
  1. /* istanbul ignore file */
  2. export const BASE_PAGE = '/';
  3. export const FORGOT_PASSWORD_PAGE = '/forgot-password';
  4. export const HOME_PAGE = '/home';
  5. export const ADS_PAGE = '/ads';
  6. export const AD_DETAILS_PAGE = '/ads/:id';
  7. export const ERROR_PAGE = '/error-page';
  8. export const NOT_FOUND_PAGE = '/not-found';
  9. export const USERS_PAGE = '/users';
  10. export const USER_DETAILS_PAGE = '/users/:id';
  11. export const CANDIDATES_PAGE = '/candidates';
  12. export const CANDIDATES_DETAILS_PAGE = '/candidates/:id';
  13. export const FORGOT_PASSWORD_CONFIRMATION_PAGE = '/forgot-password-confirmation';
  14. export const RESET_PASSWORD_PAGE = '/reset-password';
  15. export const SELECTION_PROCESS_PAGE = '/selectionFlow';
  16. export const SELECTION_PROCESS_OF_APPLICANT_PAGE = '/selectionFlow/:id';
  17. export const PATTERNS_PAGE = '/patterns';
  18. export const PATTERN_DETAILS_PAGE = '/patterns/:id';
  19. export const SCHEDULE_PAGE = '/schedule'
  20. export const STATS_PAGE = '/statistics';
  21. export const REGISTER_PAGE = '/register';
  22. export const CREATE_AD_PAGE = '/create-ad';