1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

15 lines
554 B
JavaScript
Raw Normal View History

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-11 09:37:13 -08:00
export async function getBlockedAccounts (instanceName, accessToken, limit = 80) {
let url = `${basename(instanceName)}/api/v1/blocks`
url += '?' + paramsString({ limit })
2018-02-24 14:49:28 -08:00
return getWithTimeout(url, auth(accessToken))
}
2018-02-11 09:37:13 -08:00
export async function getMutedAccounts (instanceName, accessToken, limit = 80) {
let url = `${basename(instanceName)}/api/v1/mutes`
url += '?' + paramsString({ limit })
2018-02-24 14:49:28 -08:00
return getWithTimeout(url, auth(accessToken))
2018-02-11 09:37:13 -08:00
}