-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: export display name and sort order for templates outside of Comp…
…oser (#6936) * Adding template sort order json * Moving templates.json * Cleaning up routing to no longer use old creation experience * Removing unneeded fetchTemplate param * Adding logic to attmpt to get template order and display name from git hub with shipped sort order as back up * Adding ben and patrick as Composer dir code owners * fixing unit test * Making PR changes * Fixing references with extra param * Fix unused props lint error * Remove unneeded fetch template call * Fixing unit test * Adding correct mocks for unit test * Adding route to support older paths * fixing unit test for new creation routing Co-authored-by: Soroush <[email protected]> Co-authored-by: Chris Whitten <[email protected]>
- Loading branch information
1 parent
e02efce
commit 6a80368
Showing
12 changed files
with
44 additions
and
26 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ "generatorName": "@microsoft/generator-bot-empty", "displayName": "Blank bot" }, | ||
{ "generatorName": "@microsoft/generator-bot-conversational-core", "displayName": "Basic conversational bot" }, | ||
{ "generatorName": "@microsoft/generator-bot-assistant-core", "displayName": "Basic assistant" }, | ||
{ "generatorName": "@microsoft/generator-bot-enterprise-assistant", "displayName": "Enterprise assistant" }, | ||
{ "generatorName": "@microsoft/generator-bot-people", "displayName": "People" }, | ||
{ "generatorName": "@microsoft/generator-bot-calendar", "displayName": "Calendar" }, | ||
{ "generatorName": "QnASample", "displayName": "QnAMaker bot" } | ||
] |