Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

[Todo] Fix todo scope issue #1600

Merged
merged 3 commits into from
Jun 19, 2019
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/reference/skills/productivity-todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ If you plan to use the skill as part of a Virtual Assistant the process of regis
- `Notes.ReadWrite`
- `User.ReadBasic.All`
- `Tasks.ReadWrite`
- `Mail.Send`

**However**, if you wish to use the Skill directly without using a Virtual Assistant please use the following steps to manually configure Authentication for the Calendar Skill. This is **not** required when using the Skill with a Virtual Assistant.

Expand Down
10 changes: 5 additions & 5 deletions skills/src/csharp/todoskill/todoskill/manifestTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"description": "The ToDo skill provides task related capabilities and supports Office based tasks.",
"iconUrl": "toDoSkill.png",
"authenticationConnections": [
{
"id": "Outlook",
"serviceProviderId": "Azure Active Directory v2",
"scopes": "Tasks.ReadWrite Notes.ReadWrite People.Read User.Read Contacts.Read"
}
{
"id": "Outlook",
"serviceProviderId": "Azure Active Directory v2",
"scopes": "Tasks.ReadWrite Notes.ReadWrite User.ReadBasic.All Mail.Send"
}
],
"actions": [
{
Expand Down