mirror of
https://github.com/unraid/api.git
synced 2026-01-04 15:39:52 -06:00
23 lines
659 B
TypeScript
23 lines
659 B
TypeScript
/**
|
|
* @todo setup .env
|
|
*/
|
|
const ACCOUNT = 'https://localhost:8008';
|
|
const CONNECT_DOCS = 'https://docs.unraid.net/category/unraid-connect';
|
|
const CONNECT_DASHBOARD = 'https://connect.myunraid.net';
|
|
const CONNECT_FORUMS = 'https://forums.unraid.net/forum/94-connect-plugin-support/';
|
|
const DEV_GRAPH_URL = '';
|
|
const PURCHASE = 'https://unraid.ddev.site/callback';
|
|
|
|
const SETTINGS_MANAGMENT_ACCESS = '/Settings/ManagementAccess';
|
|
const PLUGIN_SETTINGS = `${SETTINGS_MANAGMENT_ACCESS}#UnraidNetSettings`;
|
|
|
|
export {
|
|
ACCOUNT,
|
|
CONNECT_DASHBOARD,
|
|
CONNECT_DOCS,
|
|
CONNECT_FORUMS,
|
|
DEV_GRAPH_URL,
|
|
PURCHASE,
|
|
PLUGIN_SETTINGS,
|
|
SETTINGS_MANAGMENT_ACCESS,
|
|
}; |