mirror of https://github.com/rancher/dashboard.git
15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
/**
|
|
* Base API endpoint for cluster repository management
|
|
*/
|
|
export const CLUSTER_REPOS_BASE_URL = '/v1/catalog.cattle.io.clusterrepos';
|
|
|
|
/**
|
|
* Base API endpoint for cluster apps
|
|
*/
|
|
export const CLUSTER_APPS_BASE_URL = '/v1/catalog.cattle.io.apps';
|
|
|
|
/**
|
|
* Base API endpoint for users
|
|
*/
|
|
export const USERS_BASE_URL = '/v1/management.cattle.io.users';
|