MCPcopy Create free account
hub / github.com/codecombat/codecombat / createNewConcept

Function createNewConcept

app/core/api/concept.js:7–11  ·  view source on GitHub ↗
({ ...opts }, options = {})

Source from the content-addressed store, hash-verified

5 * @async
6 */
7export const createNewConcept = ({ ...opts }, options = {}) =>
8 fetchJson('/db/concept', _.assign({}, options, {
9 method: 'POST',
10 json: { ...opts }
11 }))
12
13export const getConcepts = () => fetchJson('/db/concept')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected