[Features] Added Autoflow Tabular to open source features. Fixes #1469

This commit is contained in:
Henry
2017-03-29 13:15:46 -07:00
parent 12d1302138
commit 4ae35576a5
9 changed files with 1196 additions and 2 deletions

View File

@@ -23,11 +23,13 @@
define([
'lodash',
'../../platform/features/conductor/utcTimeSystem/src/UTCTimeSystem',
'../../example/generator/plugin'
'../../example/generator/plugin',
'../../platform/features/autoflow/plugin'
], function (
_,
UTCTimeSystem,
GeneratorPlugin
GeneratorPlugin,
AutoflowPlugin
) {
var bundleMap = {
CouchDB: 'platform/persistence/couch',
@@ -55,6 +57,10 @@ define([
};
};
plugins.AutoflowView = function () {
return AutoflowPlugin;
};
var conductorInstalled = false;
plugins.Conductor = function (options) {