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