Skip to content

Commit

Permalink
added issue for todo (#1575)
Browse files Browse the repository at this point in the history
  • Loading branch information
Snorre98 committed Oct 31, 2024
1 parent e5ec7b4 commit a499f2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { AdminPageLayout } from '../AdminPageLayout/AdminPageLayout';
import styles from './RecruitmentPositionOverviewPage.module.scss';
import { ProcessedApplicants } from './components';

// TODO add backend to fetch these. ISSUE #1575
const APPLICATION_CATEGORY = ['unprocessed', 'withdrawn', 'hardtoget', 'rejected', 'accepted'] as const;
type ApplicationCategory = (typeof APPLICATION_CATEGORY)[number];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ type RecruitmentApplicantsStatusProps = {
onInterviewChange: () => void;
};

// TODO add backend to fetch these
// TODO add backend to fetch these ISSUE #1575
const priorityOptions: DropdownOption<number>[] = [
{ label: 'Not Set', value: 0 },
{ label: 'Reserve', value: 1 },
{ label: 'Wanted', value: 2 },
{ label: 'Not Wanted', value: 3 },
];

// TODO add backend to fetch these ISSUE #1575
const statusOptions: DropdownOption<number>[] = [
{ label: 'Nothing', value: 0 },
{ label: 'Called and accepted', value: 1 },
Expand Down

0 comments on commit a499f2b

Please sign in to comment.