diff --git a/.gitignore b/.gitignore index c46750c2..847e0a84 100644 --- a/.gitignore +++ b/.gitignore @@ -103,5 +103,5 @@ dist # TernJS port file .tern-port -# mac os cache files -.DS_Store \ No newline at end of file +# macOS cache files +.DS_Store diff --git a/config/index.js b/config/index.js index 4cbf464b..49f591b8 100644 --- a/config/index.js +++ b/config/index.js @@ -3,7 +3,7 @@ module.exports = (() => { const env = process.env.APPENV || "dev"; - console.info(`APPENV: "${env}"`); + console.log(`APPENV: "${env}"`); // for security reason don't let to require any arbitrary file defined in process.env if (["prod", "dev"].indexOf(env) < 0) { 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], }, ];