2018-08-25 22:03:33 -07:00
|
|
|
import { auth, basename } from './utils'
|
|
|
|
import { post, WRITE_TIMEOUT } from '../_utils/ajax'
|
|
|
|
|
|
|
|
export function setShowReblogs (instanceName, accessToken, accountId, showReblogs) {
|
|
|
|
let url = `${basename(instanceName)}/api/v1/accounts/${accountId}/follow`
|
2018-08-29 21:42:57 -07:00
|
|
|
return post(url, { reblogs: !!showReblogs }, auth(accessToken), { timeout: WRITE_TIMEOUT })
|
2018-08-25 22:03:33 -07:00
|
|
|
}
|