Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add security fields to directline channel site for botservice #3817

Merged
merged 3 commits into from
Sep 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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