diff --git a/src/scripts/js/es6/common/api/init.js b/src/scripts/js/es6/common/api/init.js index 5b4b8000..09f8f4b5 100644 --- a/src/scripts/js/es6/common/api/init.js +++ b/src/scripts/js/es6/common/api/init.js @@ -1,3 +1,6 @@ +/** + * Functions for communicating with the pillar server api + */ export { thenMarkdownToHtml } from './markdown' export { thenGetProject } from './projects' export { thenGetNodes, thenGetNode, thenGetNodeActivities, thenUpdateNode, thenDeleteNode } from './nodes' diff --git a/src/scripts/js/es6/common/events/init.js b/src/scripts/js/es6/common/events/init.js index 36edc2ec..67e83f1b 100644 --- a/src/scripts/js/es6/common/events/init.js +++ b/src/scripts/js/es6/common/events/init.js @@ -1 +1,4 @@ +/** + * Collecting Custom Pillar events here + */ export {Nodes} from './Nodes'