-
Notifications
You must be signed in to change notification settings - Fork 406
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included changes: - Split user and author functionality into different bots. With this change, the authors and users app packages now have different bot IDs, which enables you to use app permission policies to control access to the authors app. (In previous versions, using app permission policies with Company Communicator led to intermittent message delivery failures.) - Include a Powershell script for deployment and upgrade from v3. The script checks for deployment prerequisites, creates and configures AAD applications, and deploys the resources to your Azure subscription. It can also detect and recover from some Azure deployment failures. - Set isNotificationOnly to true in the app manifest. This was originally set to false to allow for recovery in case we missed the conversationUpdate activity, but now that we can get the chat thread ID via Graph, we can set this to true. - Add unit tests for message send and preparation functions - Bug fixes: #239 Co-authored-by: Anuj Gupta <guptaa@microsoft.com> Co-authored-by: Priyank Saxena <prsaxen@microsoft.com> Co-authored-by: Lakshmi Pratap Reddy <v-lareddy@microsoft.com> Co-authored-by: Ashish Shrivastav <v-ashshr@microsoft.com> Co-authored-by: Abdelrady Tantawy <v-abtan@microsoft.com>
- Loading branch information
1 parent
176911e
commit f75139d
Showing
167 changed files
with
7,045 additions
and
743 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[ | ||
{ | ||
"resourceAppId": "00000003-0000-0000-c000-000000000000", | ||
"resourceAccess": [ | ||
{ | ||
"id": "5f8c59db-677d-491f-a6b8-5f174b11ec1d", | ||
"type": "Scope" | ||
}, | ||
{ | ||
"id": "e1fe6dd8-ba31-4d61-89e7-88639da4683d", | ||
"type": "Scope" | ||
}, | ||
{ | ||
"id": "88e58d74-d3df-44f3-ad47-e89edf4472e4", | ||
"type": "Scope" | ||
}, | ||
{ | ||
"id": "5b567255-7703-4780-807c-7be8301ae99b", | ||
"type": "Role" | ||
}, | ||
{ | ||
"id": "df021288-bdef-4463-88db-98f22de89214", | ||
"type": "Role" | ||
}, | ||
{ | ||
"id": "74ef0291-ca83-4d02-8c7e-d2391e6a444f", | ||
"type": "Role" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"idToken": [], | ||
"accessToken": [ | ||
{ | ||
"name": "upn", | ||
"source": null, | ||
"essential": false, | ||
"additionalProperties": [] | ||
} | ||
], | ||
"saml2Token": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"idToken": [], | ||
"accessToken": [], | ||
"saml2Token": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.