2018-03-06 05:29:49 +01:00
|
|
|
import { postWithTimeout } from '../_utils/ajax'
|
|
|
|
import { auth, basename } from './utils'
|
|
|
|
|
2018-03-06 08:56:48 +01:00
|
|
|
export async function followAccount (instanceName, accessToken, accountId) {
|
2018-03-06 05:29:49 +01:00
|
|
|
let url = `${basename(instanceName)}/api/v1/accounts/${accountId}/follow`
|
|
|
|
return postWithTimeout(url, null, auth(accessToken))
|
|
|
|
}
|
|
|
|
|
2018-03-06 08:56:48 +01:00
|
|
|
export async function unfollowAccount (instanceName, accessToken, accountId) {
|
2018-03-06 05:29:49 +01:00
|
|
|
let url = `${basename(instanceName)}/api/v1/accounts/${accountId}/unfollow`
|
|
|
|
return postWithTimeout(url, null, auth(accessToken))
|
2018-03-06 08:56:48 +01:00
|
|
|
}
|