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