aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api/users.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/api/users.js')
-rw-r--r--server/sonar-web/src/main/js/api/users.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/api/users.js b/server/sonar-web/src/main/js/api/users.js
index 90910dd0d95..a3e6f3e5d1b 100644
--- a/server/sonar-web/src/main/js/api/users.js
+++ b/server/sonar-web/src/main/js/api/users.js
@@ -1,6 +1,6 @@
import $ from 'jquery';
export function getCurrentUser () {
- let url = baseUrl + '/api/users/current';
+ const url = baseUrl + '/api/users/current';
return $.get(url);
}