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

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