InlineContributions.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. 'use strict';
  2. /*
  3. *+------------------------------------------------------------------------+
  4. *| Licensed Materials - Property of IBM
  5. *| IBM Cognos Products: Storytelling
  6. *| (C) Copyright IBM Corp. 2019
  7. *|
  8. *| US Government Users Restricted Rights - Use, duplication or disclosure
  9. *| restricted by GSA ADP Schedule Contract with IBM Corp.
  10. *+------------------------------------------------------------------------+
  11. */
  12. define([], function () {
  13. 'use strict';
  14. // Temporary array of collection contributions.
  15. // These should also exist in the perspective file, and be removed once they are in an installkit.
  16. /*
  17. example: (from perspectives/story/contrib/timeline.json)
  18. {
  19. "containerId": "com.ibm.bi.dashboard.boardModelExtension",
  20. "id": "com.ibm.bi.dashboard.boardModel.timelineExtension",
  21. "name": "timeline",
  22. "class": "storytelling/model/TimelineModel",
  23. "type": "model",
  24. "autoCreate": false
  25. }
  26. */
  27. // ATTENTION reviewers:
  28. // anything added here must also exist and be identical to a contribution in one of the perspective contrib folder.
  29. return [];
  30. });
  31. //# sourceMappingURL=InlineContributions.js.map