File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,11 @@ Model.knex(db);
1212
1313const boolFields = [
1414 'is_deleted' ,
15+ 'ssl_forced' ,
16+ 'http2_support' ,
1517 'enabled' ,
18+ 'hsts_enabled' ,
19+ 'hsts_subdomains' ,
1620] ;
1721
1822class DeadHost extends Model {
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ const now = require('./now_helper');
88Model . knex ( db ) ;
99
1010const boolFields = [
11- 'enabled' ,
1211 'is_deleted' ,
12+ 'enabled' ,
1313 'tcp_forwarding' ,
1414 'udp_forwarding' ,
1515] ;
Original file line number Diff line number Diff line change 2222 " enabled" ,
2323 " locations" ,
2424 " hsts_enabled" ,
25- " hsts_subdomains" ,
26- " certificate"
25+ " hsts_subdomains"
2726 ],
2827 "additionalProperties" : false ,
2928 "properties" : {
Original file line number Diff line number Diff line change 99 "url" : " http://127.0.0.1:81/api"
1010 }
1111 ],
12+ "components" : {
13+ "securitySchemes" : {
14+ "bearerAuth" : {
15+ "type" : " http" ,
16+ "scheme" : " bearer" ,
17+ "bearerFormat" : " JWT"
18+ }
19+ }
20+ },
1221 "paths" : {
1322 "/" : {
1423 "get" : {
You can’t perform that action at this time.
0 commit comments