({ name }, options = {})
| 45 | * @returns {Promise<Object>} raw Cutscene object |
| 46 | */ |
| 47 | export const createCutscene = ({ name }, options = {}) => |
| 48 | fetchJson('/db/cutscene', _.assign({}, options, { |
| 49 | method: 'POST', |
| 50 | json: { name } |
| 51 | })) |
nothing calls this directly
no outgoing calls
no test coverage detected