1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 07:15:47 +01:00

8 lines
220 B
JavaScript
Raw Normal View History

2018-02-23 18:23:36 -08:00
import { getWithTimeout } from '../_utils/ajax'
import { basename } from './utils'
2018-02-08 22:29:29 -08:00
export function getInstanceInfo (instanceName) {
let url = `${basename(instanceName)}/api/v1/instance`
2018-02-23 18:23:36 -08:00
return getWithTimeout(url)
2018-02-08 22:29:29 -08:00
}