This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 103103# TernJS port file
104104.tern-port
105105
106- # mac os cache files
107- .DS_Store
106+ # macOS cache files
107+ .DS_Store
Original file line number Diff line number Diff line change 33module . exports = ( ( ) => {
44 const env = process . env . APPENV || "dev" ;
55
6- console . info ( `APPENV: "${ env } "` ) ;
6+ console . log ( `APPENV: "${ env } "` ) ;
77
88 // for security reason don't let to require any arbitrary file defined in process.env
99 if ( [ "prod" , "dev" ] . indexOf ( env ) < 0 ) {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments