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 103
103
# TernJS port file
104
104
.tern-port
105
105
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 3
3
module . exports = ( ( ) => {
4
4
const env = process . env . APPENV || "dev" ;
5
5
6
- console . info ( `APPENV: "${ env } "` ) ;
6
+ console . log ( `APPENV: "${ env } "` ) ;
7
7
8
8
// for security reason don't let to require any arbitrary file defined in process.env
9
9
if ( [ "prod" , "dev" ] . indexOf ( env ) < 0 ) {
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ export const CANDIDATE_STATUS = {
100
100
SHORTLIST : "shortlist" ,
101
101
REJECTED : "rejected" ,
102
102
INTERVIEW : "interview" ,
103
+ TOPCODER_REJECTED : "topcoder-rejected" ,
103
104
} ;
104
105
105
106
/**
@@ -131,7 +132,7 @@ export const CANDIDATE_STATUS_FILTERS = [
131
132
key : CANDIDATE_STATUS_FILTER_KEY . NOT_INTERESTED ,
132
133
buttonText : "Not Interested" ,
133
134
title : "Not Interested Candidates" ,
134
- statuses : [ CANDIDATE_STATUS . REJECTED ] ,
135
+ statuses : [ CANDIDATE_STATUS . REJECTED , CANDIDATE_STATUS . TOPCODER_REJECTED ] ,
135
136
} ,
136
137
] ;
137
138
You can’t perform that action at this time.
0 commit comments