pinafore/routes/_api/blockedAndMuted.js

15 lines
554 B
JavaScript
Raw Normal View History

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