({ name }, options = {})
| 51 | * @returns {Promise<import('../../../app/schemas/models/selectors/cinematic').Cinematic} raw Cinematic object |
| 52 | */ |
| 53 | export const createCinematic = ({ name }, options = {}) => |
| 54 | fetchJson('/db/cinematic', _.assign({}, options, { |
| 55 | method: 'POST', |
| 56 | json: { name } |
| 57 | })) |
nothing calls this directly
no outgoing calls
no test coverage detected