8dbc1b0503
* chore(package): update standard to version 12.0.0 * package lock update * fix eslint
13 lines
550 B
JavaScript
13 lines
550 B
JavaScript
import { auth, basename } from './utils'
|
|
import { post, WRITE_TIMEOUT } from '../_utils/ajax'
|
|
|
|
export async function blockAccount (instanceName, accessToken, accountId) {
|
|
let url = `${basename(instanceName)}/api/v1/accounts/${accountId}/block`
|
|
return post(url, null, auth(accessToken), { timeout: WRITE_TIMEOUT })
|
|
}
|
|
|
|
export async function unblockAccount (instanceName, accessToken, accountId) {
|
|
let url = `${basename(instanceName)}/api/v1/accounts/${accountId}/unblock`
|
|
return post(url, null, auth(accessToken), { timeout: WRITE_TIMEOUT })
|
|
}
|