add promisedRequest helper

This commit is contained in:
taehoon 2019-03-20 11:54:16 -04:00
parent cea6ea42f0
commit 02d169b92c

View file

@ -724,21 +724,17 @@ const fetchRebloggedByUsers = ({id}) => {
} }
const reportUser = ({credentials, userId, statusIds, comment, forward}) => { const reportUser = ({credentials, userId, statusIds, comment, forward}) => {
const payload = { return promisedRequest({
uri: MASTODON_REPORT_USER_URL,
method: 'POST',
payload: {
'account_id': userId, 'account_id': userId,
'status_ids': statusIds, 'status_ids': statusIds,
comment, comment,
forward forward
}
return fetch(MASTODON_REPORT_USER_URL, {
body: JSON.stringify(payload),
headers: {
...authHeaders(credentials),
'Accept': 'application/json',
'Content-Type': 'application/json'
}, },
method: 'POST' credentials
}).then((data) => data.json()) })
} }
const apiService = { const apiService = {