From 20e3969b5577510649b561381f43163df448a695 Mon Sep 17 00:00:00 2001 From: Maksym Mykhailenko Date: Fri, 9 Apr 2021 10:46:21 +0300 Subject: [PATCH] feat: add JC status "topcoder-rejected" --- .gitignore | 3 +++ src/constants/index.js | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 67045665..ac4ff706 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,6 @@ dist # TernJS port file .tern-port + +# macOS files +.DS_Store diff --git a/src/constants/index.js b/src/constants/index.js index d4574058..6afdbdf5 100644 --- a/src/constants/index.js +++ b/src/constants/index.js @@ -100,6 +100,7 @@ export const CANDIDATE_STATUS = { SHORTLIST: "shortlist", REJECTED: "rejected", INTERVIEW: "interview", + TOPCODER_REJECTED: "topcoder-rejected", }; /** @@ -131,7 +132,7 @@ export const CANDIDATE_STATUS_FILTERS = [ key: CANDIDATE_STATUS_FILTER_KEY.NOT_INTERESTED, buttonText: "Not Interested", title: "Not Interested Candidates", - statuses: [CANDIDATE_STATUS.REJECTED], + statuses: [CANDIDATE_STATUS.REJECTED, CANDIDATE_STATUS.TOPCODER_REJECTED], }, ];