mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 05:01:50 +08:00

* Add new providers * Extract utils * Configurable workflow fields * translate fields * Add translations * Update cards * Add isGitProvider * i18n * Dynamic fields for ConfigForm * Use git fields * Remove type dropdown for edit * Display proper type groups * Display field errors * Improve error handling * Refactor data * Check for repositoryLister * Fix workflow * use state var * betterer * Prettier * Prettier[2] * i18n * Remove showDropdown * i18n * Update step validation * Add test * Update provider list * Cleanup * Add tokenUser field * Provider-specific source code link * Review comments --------- Co-authored-by: Roberto Jimenez Sanchez <roberto.jimenez@grafana.com>
6 lines
276 B
TypeScript
6 lines
276 B
TypeScript
export const PROVISIONING_URL = '/admin/provisioning';
|
|
export const CONNECT_URL = `${PROVISIONING_URL}/connect`;
|
|
export const GETTING_STARTED_URL = `${PROVISIONING_URL}/getting-started`;
|
|
|
|
export const DEFAULT_REPOSITORY_TYPES: Array<'github' | 'local'> = ['github', 'local'];
|