1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 23:27:32 +01:00
2018-01-13 14:19:51 -08:00

8 lines
235 B
JavaScript

import { get } from '../ajax'
export function getCurrentUser(instanceName, accessToken) {
let url = `https://${instanceName}/api/v1/accounts/verify_credentials`
return get(url, {
'Authorization': `Bearer ${accessToken}`
})
}