File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Models Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ namespace RESTAPI\Models;
44
55use RESTAPI \Core \Model ;
66use RESTAPI \Dispatchers \HAProxyApplyDispatcher ;
7+ use RESTAPI \Fields \Base64Field ;
78use RESTAPI \Fields \BooleanField ;
89use RESTAPI \Fields \IntegerField ;
910use RESTAPI \Fields \InterfaceField ;
@@ -72,7 +73,7 @@ class HAProxyBackend extends Model {
7273 public NestedModelField $ errorfiles ;
7374 public BooleanField $ cookie_attribute_secure ;
7475 public StringField $ advanced ;
75- public StringField $ advanced_backend ;
76+ public Base64Field $ advanced_backend ;
7677 public BooleanField $ transparent_clientip ;
7778 public InterfaceField $ transparent_interface ;
7879
@@ -439,7 +440,7 @@ class HAProxyBackend extends Model {
439440 allow_empty: true ,
440441 help_text: 'The per server pass thru to apply to each server line. ' ,
441442 );
442- $ this ->advanced_backend = new StringField (
443+ $ this ->advanced_backend = new Base64Field (
443444 default: '' ,
444445 allow_empty: true ,
445446 help_text: 'The backend pass thru to apply to the backend section. ' ,
You can’t perform that action at this time.
0 commit comments