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