Files
the-example-app-nodejs/services/contentful.js
2017-11-07 17:33:32 +01:00

21 lines
359 B
JavaScript

const { createClient } = require('contentful')
const client = createClient({space: process.env.CF_SPACE, accessToken: process.env.CF_ACCESS_TOKEN})
export function getCourses () {
// TODO
}
export function getLessons (courseId) {
// TODO
}
export function getCategories () {
// TODO
}
export function getCoursesByCategory (category) {
// TODO
}