2018-02-23 18:23:36 -08:00
|
|
|
import { getWithTimeout, paramsString } from '../_utils/ajax'
|
2018-02-24 14:49:28 -08:00
|
|
|
import { auth, basename } from './utils'
|
2018-02-10 16:03:28 -08:00
|
|
|
|
2018-02-11 09:37:13 -08:00
|
|
|
export async function getBlockedAccounts (instanceName, accessToken, limit = 80) {
|
2018-02-18 19:41:10 -08:00
|
|
|
let url = `${basename(instanceName)}/api/v1/blocks`
|
2018-02-10 16:03:28 -08:00
|
|
|
url += '?' + paramsString({ limit })
|
2018-02-24 14:49:28 -08:00
|
|
|
return getWithTimeout(url, auth(accessToken))
|
2018-02-10 16:03:28 -08:00
|
|
|
}
|
|
|
|
|
2018-02-11 09:37:13 -08:00
|
|
|
export async function getMutedAccounts (instanceName, accessToken, limit = 80) {
|
2018-02-18 19:41:10 -08:00
|
|
|
let url = `${basename(instanceName)}/api/v1/mutes`
|
2018-02-10 16:03:28 -08:00
|
|
|
url += '?' + paramsString({ limit })
|
2018-02-24 14:49:28 -08:00
|
|
|
return getWithTimeout(url, auth(accessToken))
|
2018-02-11 09:37:13 -08:00
|
|
|
}
|