1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-15 10:50:46 +01:00

8 lines
239 B
JavaScript
Raw Normal View History

2018-01-13 14:19:51 -08:00
import { get } from '../ajax'
2018-01-13 20:07:11 -08:00
export function getThisUserAccount(instanceName, accessToken) {
2018-01-13 14:19:51 -08:00
let url = `https://${instanceName}/api/v1/accounts/verify_credentials`
return get(url, {
'Authorization': `Bearer ${accessToken}`
})
}