2018-06-13 16:38:36 +02:00
|
|
|
import { post, WRITE_TIMEOUT } from '../_utils/ajax'
|
2018-04-28 23:19:39 +02:00
|
|
|
import { auth, basename } from './utils'
|
|
|
|
|
|
|
|
export async function approveFollowRequest (instanceName, accessToken, accountId) {
|
|
|
|
let url = `${basename(instanceName)}/api/v1/follow_requests/${accountId}/authorize`
|
2018-06-13 16:38:36 +02:00
|
|
|
return post(url, null, auth(accessToken), {timeout: WRITE_TIMEOUT})
|
2018-04-28 23:19:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function rejectFollowRequest (instanceName, accessToken, accountId) {
|
|
|
|
let url = `${basename(instanceName)}/api/v1/follow_requests/${accountId}/reject`
|
2018-06-13 16:38:36 +02:00
|
|
|
return post(url, null, auth(accessToken), {timeout: WRITE_TIMEOUT})
|
2018-04-28 23:19:39 +02:00
|
|
|
}
|