aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api/projectLinks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/api/projectLinks.ts')
-rw-r--r--server/sonar-web/src/main/js/api/projectLinks.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/api/projectLinks.ts b/server/sonar-web/src/main/js/api/projectLinks.ts
index 6af46e1adc5..478720227a8 100644
--- a/server/sonar-web/src/main/js/api/projectLinks.ts
+++ b/server/sonar-web/src/main/js/api/projectLinks.ts
@@ -22,7 +22,10 @@ import { getJSON, post, postJSON } from '../helpers/request';
import { ProjectLink } from '../types/types';
export function getProjectLinks(projectKey: string): Promise<ProjectLink[]> {
- return getJSON('/api/project_links/search', { projectKey }).then(r => r.links, throwGlobalError);
+ return getJSON('/api/project_links/search', { projectKey }).then(
+ (r) => r.links,
+ throwGlobalError
+ );
}
export function deleteLink(linkId: string) {
@@ -34,5 +37,5 @@ export function createLink(data: {
projectKey: string;
url: string;
}): Promise<ProjectLink> {
- return postJSON('/api/project_links/create', data).then(r => r.link, throwGlobalError);
+ return postJSON('/api/project_links/create', data).then((r) => r.link, throwGlobalError);
}