UNPKG

@digicms/cms

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

15 lines (10 loc) 239 B
'use strict'; const { createAPI } = require('./api'); const createAdminAPI = (strapi) => { const opts = { prefix: '', // '/admin'; type: 'admin', }; return createAPI(strapi, opts); }; module.exports = { createAdminAPI };