Newer
Older
import * as api from 'pubsweet-client/src/helpers/api'
// constants
export const SET_AUTHORS = 'authors/SET_AUTHORS'
// actions
export const addAuthor = (author, collectionId, fragmentId) => dispatch =>
api.create(
`/collections/${collectionId}/fragments/${fragmentId}/authors`,
author,
)