aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api/components.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/api/components.ts')
-rw-r--r--server/sonar-web/src/main/js/api/components.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/api/components.ts b/server/sonar-web/src/main/js/api/components.ts
index 18401c85430..f0daad39faa 100644
--- a/server/sonar-web/src/main/js/api/components.ts
+++ b/server/sonar-web/src/main/js/api/components.ts
@@ -189,7 +189,6 @@ export function getMyProjects(data: {
}
export interface Component {
- organization: string;
id: string;
key: string;
name: string;
@@ -212,7 +211,6 @@ export function searchProjects(
): Promise<{
components: Component[];
facets: Facet[];
- organizations: Array<{ key: string; name: string }>;
paging: T.Paging;
}> {
const url = '/api/components/search_projects';
@@ -232,7 +230,6 @@ export function changeKey(data: { from: string; to: string }) {
}
export interface SuggestionsResponse {
- organizations: Array<{ key: string; name: string }>;
projects: Array<{ key: string; name: string }>;
results: Array<{
items: Array<{
@@ -241,7 +238,6 @@ export interface SuggestionsResponse {
key: string;
match: string;
name: string;
- organization: string;
project: string;
}>;
more: number;