File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "workbench.colorCustomizations" : {
3
+ "[Community Material Theme Darker High Contrast]" : {}
4
+ }
5
+ }
Original file line number Diff line number Diff line change @@ -4,12 +4,15 @@ import cors from 'cors';
4
4
import MasterRouter from '../api' ;
5
5
import { environment } from '../../environments/environment' ;
6
6
import path from 'path' ;
7
+ import helmet from 'helmet' ;
7
8
8
9
export default ( { app } : { app : express . Application } ) => {
9
10
/**
10
11
* Health Check endpoints
11
12
* @TODO Explain why they are here
12
13
*/
14
+
15
+ app . use ( helmet ( ) ) ;
13
16
app . get ( '/status' , ( _req , res ) => {
14
17
res . status ( 200 ) . end ( ) ;
15
18
} ) ;
Original file line number Diff line number Diff line change 44
44
"express-basic-auth" : " ^1.2.0" ,
45
45
"express-jwt" : " ^6.0.0" ,
46
46
"googleapis" : " ^59.0.0" ,
47
+ "helmet" : " ^4.2.0" ,
47
48
"jsonwebtoken" : " ^8.2.0" ,
48
49
"method-override" : " ^3.0.0" ,
49
50
"moment" : " ^2.23.0" ,
You can’t perform that action at this time.
0 commit comments