1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-13 01:40:49 +01:00
2018-08-25 22:03:33 -07:00

8 lines
350 B
JavaScript

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`
return post(url, { reblogs: !!showReblogs }, auth(accessToken), {timeout: WRITE_TIMEOUT})
}