aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api/users.js
blob: 90910dd0d95046f84fce00c99216579eaa4d6a02 (plain)
1
2
3
4
5
6
import $ from 'jquery';

export function getCurrentUser () {
  let url = baseUrl + '/api/users/current';
  return $.get(url);
}