DashboardDrillInfoService.js 920 B

123456789101112131415161718192021222324252627282930
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Watson Analytics (C) Copyright IBM Corp. 2018
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. *
  7. */
  8. define(['../../lib/@waca/core-client/js/core-client/ui/core/Class'], function (Class) {
  9. 'use strict';
  10. var DashboardDrillInfoService = Class.extend({
  11. /**
  12. * @param {object} attributes.glassContext - The glassContext associated with this service.
  13. */
  14. init: function init(attributes) {
  15. this._glassContext = attributes.glassContext;
  16. DashboardDrillInfoService.inherited('init', this, arguments);
  17. },
  18. getParameters: function getParameters() /** storeId */{
  19. // TODO need to be implemented when support drill to dashboard.
  20. return Promise.resolve();
  21. }
  22. });
  23. return DashboardDrillInfoService;
  24. });
  25. //# sourceMappingURL=DashboardDrillInfoService.js.map