Added fixes for prod

This commit is contained in:
Wyatt Johnson
2016-11-22 09:31:54 -07:00
parent 9ecb95dc71
commit 8eacb01484
2 changed files with 2 additions and 2 deletions
@@ -52,7 +52,7 @@ Promise.all([
const updateComment = (store, comment) => {
fetch(`/api/v1/comments/${comment.get('id')}/status`, {
method: 'POST',
method: 'PUT',
headers: jsonHeader,
body: JSON.stringify({status: comment.get('status')})
})