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