UNPKG

bigbluebutton-strapi

Version:

Integrate online classes into Strapi CMS via BigBlueButton open-source video conferencing. This free plugin also provides API end-points to easily setup start and join buttons for web conferencing into any frontend app.

9 lines (7 loc) 247 B
'use strict'; const classSchema = require('./class'); const sessionSchema = require('./session'); module.exports = { class: { schema: classSchema }, // should re-use the singularName of the content-type session: { schema: sessionSchema }, };