EpisodeActEntry.js 612 B

1234567891011121314151617181920212223
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI
  5. * (C) Copyright IBM Corp. 2017
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. define(['gemini/lib/@waca/dashboard-common/dist/core/Model'], function (Model) {
  9. var EpisodeActEntry = EpisodeActEntry = Model.extend({
  10. whitelistAttrs: ['id', 'timer', 'action', 'payload'],
  11. init: function init() {
  12. EpisodeActEntry.inherited('init', this, arguments);
  13. }
  14. });
  15. return EpisodeActEntry;
  16. });
  17. //# sourceMappingURL=EpisodeActEntry.js.map