Skip to content

Commit

Permalink
fix: update aka link (#1126)
Browse files Browse the repository at this point in the history
* fix: update aka link

* fix: update aka link in vsc readme
  • Loading branch information
1openwindow committed May 20, 2021
1 parent b987524 commit fbd79d7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions packages/fx-core/src/plugins/resource/appstudio/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ export class Constants {
public static readonly BUILD_OR_PUBLISH_QUESTION = "build-or-publish";
public static readonly REMOTE_TEAMS_APP_ID = "teams-app-id";
public static readonly READ_MORE = "Read more";
public static readonly PUBLISH_GUIDE =
"https://review.docs.microsoft.com/en-us/microsoftteams/platform/concepts/deploy-and-publish/appsource/publish";
public static readonly PUBLISH_GUIDE = "https://aka.ms/teamsfx-publish";
}
2 changes: 1 addition & 1 deletion packages/fx-core/templates/plugins/solution/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Microsoft Teams apps bring key information, common tools, and trusted processes

There are multiple ways to extend Teams, so every app is unique. Some only have one capability, while others have more than one feature to give users various options. For example, your app can display data in a central location, that is, the tab and present that same information through a conversational interface, that is, the bot.

[What is Teams app capabilities](https://review.docs.microsoft.com/en-us/microsoftteams/platform/concepts/capabilities-overview?branch=pr-en-us-3247)
[What is Teams app capabilities](https://aka.ms/teamsfx-capabilities-overview)

## Capabilities scaffolded in this project

Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Verify you have the right prerequisites for building Teams apps and install some
## Getting started

After installing the Teams toolkit, follow the [Get Started](https://review.docs.microsoft.com/en-us/mods/build-your-first-app/build-first-app-overview?branch=main) instruction in our documentation to smoothly start with.
After installing the Teams toolkit, follow the [Get Started](https://aka.ms/teamsfx-build-first-app) instruction in our documentation to smoothly start with.

Under the Teams Toolkit extension tab, you can easily discover all applicable commands in the sidebar and Command Palette with the keyword ‘TeamsFx’. It also supports [Command Line Interface (CLI)](https://www.npmjs.com/package/teamsfx-cli) to increase efficiency.

Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/src/controls/WelcomePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default class WelcomePanel extends React.Component<any, IWelcomePanelStat
<ActionButton
iconProps={{ iconName: "Link" }}
onClick={() => {
this.openExternalLink("https://review.docs.microsoft.com");
this.openExternalLink("https://aka.ms/teamsfx-docs");
}}
>
Teams app fundamentals
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/src/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ export async function preDebugCheckHandler(): Promise<void> {

export async function openDocumentHandler(args: any[]): Promise<boolean> {
ExtTelemetry.sendTelemetryEvent(TelemetryEvent.Documentation, getTriggerFromProperty(args));
return env.openExternal(Uri.parse("https://aka.ms/build-first-app"));
return env.openExternal(Uri.parse("https://aka.ms/teamsfx-build-first-app"));
}

export async function openWelcomeHandler(args?: any[]) {
Expand Down

0 comments on commit fbd79d7

Please sign in to comment.