({ name }, options = {})
| 48 | * @returns {Promise<Object>} - Raw Interactive object |
| 49 | */ |
| 50 | export const postInteractive = ({ name }, options = {}) => { |
| 51 | return fetchJson('/db/interactive', _.assign({}, options, { |
| 52 | method: 'POST', |
| 53 | json: { name } |
| 54 | })) |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Retrieves the json representation of interactive session. |
nothing calls this directly
no outgoing calls
no test coverage detected