Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 20e3969

Browse files
committed
feat: add JC status "topcoder-rejected"
1 parent 5c9b8c7 commit 20e3969

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
106+
# macOS files
107+
.DS_Store

src/constants/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export const CANDIDATE_STATUS = {
100100
SHORTLIST: "shortlist",
101101
REJECTED: "rejected",
102102
INTERVIEW: "interview",
103+
TOPCODER_REJECTED: "topcoder-rejected",
103104
};
104105

105106
/**
@@ -131,7 +132,7 @@ export const CANDIDATE_STATUS_FILTERS = [
131132
key: CANDIDATE_STATUS_FILTER_KEY.NOT_INTERESTED,
132133
buttonText: "Not Interested",
133134
title: "Not Interested Candidates",
134-
statuses: [CANDIDATE_STATUS.REJECTED],
135+
statuses: [CANDIDATE_STATUS.REJECTED, CANDIDATE_STATUS.TOPCODER_REJECTED],
135136
},
136137
];
137138

0 commit comments

Comments
 (0)