NewStoryActionHandler.js 741 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. /*
  3. *+------------------------------------------------------------------------+
  4. *| Licensed Materials - Property of IBM
  5. *| IBM Cognos Products: Content Explorer
  6. *| (C) Copyright IBM Corp. 2015, 2017
  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(['./NewDashboardActionHandler'], function (BaseClass) {
  13. 'use strict';
  14. var ActionHandler = BaseClass.extend({
  15. _getRestrictTemplate: function _getRestrictTemplate() /*context*/{
  16. return 'story';
  17. }
  18. });
  19. return ActionHandler;
  20. });
  21. //# sourceMappingURL=NewStoryActionHandler.js.map