File size: 211 Bytes
3206347
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
const getCurrentUser = async ($) => {
  const response = await $.http.get('/services/data/v55.0/chatter/users/me');
  const currentUser = response.data;

  return currentUser;
};

export default getCurrentUser;