Skip to content

Commit

Permalink
add security fields to directline channel site for botservice (#3817)
Browse files Browse the repository at this point in the history
* add security fields to directline channel site

* improve documentation for trusted origins field

* actually fix the description
  • Loading branch information
swagatmishra2007 authored and annatisch committed Sep 6, 2018
1 parent 25464bf commit 5ceb33d
Showing 1 changed file with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2092,15 +2092,26 @@
},
"isEnabled": {
"type": "boolean",
"description": "Whether this site is enabled for DirectLine channel"
"description": "Whether this site is enabled for DirectLine channel."
},
"isV1Enabled": {
"type": "boolean",
"description": "Whether this site is enabled for Bot Framework V1 protocol"
"description": "Whether this site is enabled for Bot Framework V1 protocol."
},
"isV3Enabled": {
"type": "boolean",
"description": "Whether this site is enabled for Bot Framework V1 protocol"
"description": "Whether this site is enabled for Bot Framework V1 protocol."
},
"isSecureSiteEnabled": {
"type": "boolean",
"description": "Whether this site is enabled for authentication with Bot Framework."
},
"trustedOrigins": {
"type": "array",
"description": "List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.",
"items": {
"type": "string"
}
}
},
"description": "A site for the Direct Line channel",
Expand Down

0 comments on commit 5ceb33d

Please sign in to comment.