1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 23:48:39 +01:00

10 lines
253 B
JavaScript
Raw Normal View History

2018-02-08 09:15:25 -08:00
import { get } from '../_utils/ajax'
import { basename } from './utils'
2018-02-08 09:15:25 -08:00
2018-02-08 22:29:29 -08:00
export function getLists (instanceName, accessToken) {
let url = `${basename(instanceName)}/api/v1/lists`
2018-02-08 09:15:25 -08:00
return get(url, {
'Authorization': `Bearer ${accessToken}`
})
2018-02-08 22:29:29 -08:00
}