-
Notifications
You must be signed in to change notification settings - Fork 801
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1488 from OfficeDev/v-mfurquan/Ajay-Sample-Fixes
Ajay's Sample Health Check-Up And Fixes
- Loading branch information
Showing
25 changed files
with
139 additions
and
81 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
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
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
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
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
7 changes: 4 additions & 3 deletions
7
.../app-link-unfurling-in-share-to-teams/csharp/LinkUnfurlingInShareToTeams/appsettings.json
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"MicrosoftAppId": "<<Microsoft-App-Id>>", | ||
"MicrosoftAppPassword": "<<Microsoft-App-Password>>", | ||
"ApplicationBaseUrl": "<<Application-Base-Url>>" | ||
"MicrosoftAppId": "", | ||
"MicrosoftAppPassword": "", | ||
"ApplicationBaseUrl": "", | ||
"TeamsAppId": "" | ||
} |
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
Binary file added
BIN
+32.5 KB
samples/app-link-unfurling-in-share-to-teams/nodejs/Images/report.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
61 changes: 61 additions & 0 deletions
61
.../bot-type-ahead-search-adaptive-cards/csharp/TypeaheadSearch/Cards/DependentDropdown.json
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,61 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"$schema": "https://adaptivecards.io/schemas/adaptive-card.json", | ||
"version": "1.5", | ||
"body": [ | ||
{ | ||
"size": "ExtraLarge", | ||
"text": "Country Picker", | ||
"weight": "Bolder", | ||
"wrap": true, | ||
"type": "TextBlock" | ||
}, | ||
{ | ||
"id": "choiceSelect", | ||
"type": "Input.ChoiceSet", | ||
"label": "Select a country or region:", | ||
"choices": [ | ||
{ | ||
"title": "USA", | ||
"value": "usa" | ||
}, | ||
{ | ||
"title": "France", | ||
"value": "france" | ||
}, | ||
{ | ||
"title": "India", | ||
"value": "india" | ||
} | ||
], | ||
"valueChangedAction": { | ||
"type": "Action.ResetInputs", | ||
"targetInputIds": [ | ||
"city" | ||
] | ||
}, | ||
"isRequired": true, | ||
"errorMessage": "Please select a country or region" | ||
}, | ||
{ | ||
"style": "filtered", | ||
"choices.data": { | ||
"type": "Data.Query", | ||
"dataset": "cities", | ||
"associatedInputs": "auto" | ||
}, | ||
"id": "city", | ||
"type": "Input.ChoiceSet", | ||
"label": "Select a city:", | ||
"placeholder": "Type to search for a city in the selected country", | ||
"isRequired": true, | ||
"errorMessage": "Please select a city" | ||
} | ||
], | ||
"actions": [ | ||
{ | ||
"title": "Submit", | ||
"type": "Action.Submit" | ||
} | ||
] | ||
} |
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
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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"MicrosoftAppId": "<<YOUR-MICROSOFT-APP-ID>>", | ||
"MicrosoftAppPassword": "<<YOUR-MICROSOFT-APP-PASSWORD>>", | ||
"BaseURL": "YOUR-BASE-URL", | ||
"ChannelEntityId": "DeepLinkApp", | ||
"TabEntityId": "com.contoso.DeeplLinkBot.help", | ||
"ManifestAppId":"Your-ManifestAppID" | ||
"TeamsAppId": "", | ||
"MicrosoftAppId": "", | ||
"MicrosoftAppPassword": "", | ||
"BaseURL": "", | ||
"ChannelEntityId": "DeepLinkApp", | ||
"TabEntityId": "com.contoso.DeeplLinkBot.help", | ||
"ManifestAppId": "" | ||
} |
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
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
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
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
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
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
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
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.