2023-07-15 02:32:30 +02:00
|
|
|
import { API_BASE } from "./constants";
|
|
|
|
|
2023-06-04 04:28:07 +02:00
|
|
|
export default {
|
|
|
|
home: () => {
|
|
|
|
return "/";
|
|
|
|
},
|
|
|
|
github: () => {
|
2023-06-08 23:26:29 +02:00
|
|
|
return "https://github.com/Mintplex-Labs/anything-llm";
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
docs: () => {
|
2023-06-08 23:26:29 +02:00
|
|
|
return "https://discord.com/invite/6UyHPeGZAC";
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
mailToMintplex: () => {
|
|
|
|
return "mailto:team@mintplex.xyz";
|
|
|
|
},
|
2023-06-08 23:26:29 +02:00
|
|
|
hosting: () => {
|
|
|
|
return "https://form.typeform.com/to/KdSCdSvq";
|
|
|
|
},
|
2023-06-04 04:28:07 +02:00
|
|
|
workspace: {
|
|
|
|
chat: (slug) => {
|
|
|
|
return `/workspace/${slug}`;
|
|
|
|
},
|
|
|
|
},
|
2023-07-15 02:32:30 +02:00
|
|
|
exports: () => {
|
|
|
|
return `${API_BASE.replace("/api", "")}/system/data-exports`;
|
|
|
|
},
|
2023-06-04 04:28:07 +02:00
|
|
|
};
|