@@ -16,7 +16,7 @@ import * as React from "react";
|
|||||||
import {
|
import {
|
||||||
developersUrl,
|
developersUrl,
|
||||||
changelogUrl,
|
changelogUrl,
|
||||||
mailToUrl,
|
feedbackUrl,
|
||||||
githubIssuesUrl,
|
githubIssuesUrl,
|
||||||
} from "@shared/utils/urlHelpers";
|
} from "@shared/utils/urlHelpers";
|
||||||
import stores from "~/stores";
|
import stores from "~/stores";
|
||||||
@@ -115,7 +115,7 @@ export const openFeedbackUrl = createAction({
|
|||||||
section: NavigationSection,
|
section: NavigationSection,
|
||||||
iconInContextMenu: false,
|
iconInContextMenu: false,
|
||||||
icon: <EmailIcon />,
|
icon: <EmailIcon />,
|
||||||
perform: () => window.open(mailToUrl()),
|
perform: () => window.open(feedbackUrl()),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const openBugReportUrl = createAction({
|
export const openBugReportUrl = createAction({
|
||||||
|
|||||||
@@ -35,16 +35,16 @@ export function twitterUrl(): string {
|
|||||||
return "https://twitter.com/getoutline";
|
return "https://twitter.com/getoutline";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function mailToUrl(): string {
|
export function feedbackUrl(): string {
|
||||||
return "mailto:hello@getoutline.com";
|
return "https://www.getoutline.com/contact";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function developersUrl(): string {
|
export function developersUrl(): string {
|
||||||
return `https://www.getoutline.com/developers`;
|
return "https://www.getoutline.com/developers";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function changelogUrl(): string {
|
export function changelogUrl(): string {
|
||||||
return `https://www.getoutline.com/changelog`;
|
return "https://www.getoutline.com/changelog";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function signin(service = "slack"): string {
|
export function signin(service = "slack"): string {
|
||||||
|
|||||||
Reference in New Issue
Block a user