File tree 4 files changed +15
-3
lines changed
4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,11 @@ Model.knex(db);
12
12
13
13
const boolFields = [
14
14
'is_deleted' ,
15
+ 'ssl_forced' ,
16
+ 'http2_support' ,
15
17
'enabled' ,
18
+ 'hsts_enabled' ,
19
+ 'hsts_subdomains' ,
16
20
] ;
17
21
18
22
class DeadHost extends Model {
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ const now = require('./now_helper');
8
8
Model . knex ( db ) ;
9
9
10
10
const boolFields = [
11
- 'enabled' ,
12
11
'is_deleted' ,
12
+ 'enabled' ,
13
13
'tcp_forwarding' ,
14
14
'udp_forwarding' ,
15
15
] ;
Original file line number Diff line number Diff line change 22
22
" enabled" ,
23
23
" locations" ,
24
24
" hsts_enabled" ,
25
- " hsts_subdomains" ,
26
- " certificate"
25
+ " hsts_subdomains"
27
26
],
28
27
"additionalProperties" : false ,
29
28
"properties" : {
Original file line number Diff line number Diff line change 9
9
"url" : " http://127.0.0.1:81/api"
10
10
}
11
11
],
12
+ "components" : {
13
+ "securitySchemes" : {
14
+ "bearerAuth" : {
15
+ "type" : " http" ,
16
+ "scheme" : " bearer" ,
17
+ "bearerFormat" : " JWT"
18
+ }
19
+ }
20
+ },
12
21
"paths" : {
13
22
"/" : {
14
23
"get" : {
You can’t perform that action at this time.
0 commit comments