User Management: Create and delete. Initial pass.
Signed-off-by: Laurence Maultsby <laurence.maultsby@riftio.com>
diff --git a/skyquake/skyquake.js b/skyquake/skyquake.js
index 726757f..41ac03b 100644
--- a/skyquake/skyquake.js
+++ b/skyquake/skyquake.js
@@ -135,6 +135,7 @@
var descriptor_routes = require('./framework/core/modules/routes/descriptorModel');
var configuration_routes = require('./framework/core/modules/routes/configuration');
var configurationAPI = require('./framework/core/modules/api/configuration');
+ var userManagement_routes = require('./framework/core/modules/routes/userManagement');
/**
* Processing when a plugin is added or modified
* @param {string} plugin_name - Name of the plugin
@@ -214,6 +215,9 @@
//Configure descriptor route(s)
app.use(descriptor_routes);
+ //Configure user management route(s)
+ app.use(userManagement_routes);
+
// app.get('/testme', function(req, res) {
// res.sendFile(__dirname + '/index.html');
// });