View Single Post
  #7  
Old 06.02.2019, 07:59
botmtl botmtl is offline
DSL User
 
Join Date: Apr 2015
Location: Montreal
Posts: 39
Default

Quote:
Originally Posted by Jiaz View Post
Syntax is JSON and the value expected is an Array of UrlDisplayEntry Objects

Code:
[ {
  "type" : "ORIGIN",
  "enabled" : true
}, {
  "type" : "REFERRER",
  "enabled" : false
}, {
  "type" : "CONTENT",
  "enabled" : false
}, {
  "type" : "CONTAINER",
  "enabled" : false
}, {
  "type" : "CUSTOM",
  "enabled" : false
} ]
To anyone having issues filling this in, copying and pasting the above won't work. The only way I have found to change this setting is to use a string containing no blanks or carriage returns whatsoever.

Like this:

Code:
[{"type":"CONTENT","enabled":true},{"type":"REFERRER","enabled":false},{"type":"ORIGIN","enabled":false},{"type":"CONTAINER","enabled":false},{"type":"CUSTOM","enabled":false}]
Reply With Quote