change route name

This commit is contained in:
Jonathan Rainville 2018-08-01 12:53:37 -04:00 committed by Iuri Matias
parent 53b8787156
commit 385f8ea1cf
3 changed files with 3 additions and 4 deletions

View File

@ -56,7 +56,7 @@ class ProcessLauncher {
const self = this;
self.embark.registerAPICall(
'ws',
'/embark/process-logs/' + self.name,
'/embark-api/process-logs/' + self.name,
(ws, _req) => {
self.events.on('log-' + self.name, function(logLevel, msg) {
ws.send(JSON.stringify({msg, msg_clear: msg.stripColors, logLevel}), () => {});

View File

@ -15,7 +15,7 @@ class ProcessManager {
self.plugin = this.plugins.createPlugin('processManager', {});
self.plugin.registerAPICall(
'get',
'/embark/processes',
'/embark-api/processes',
(req, res) => {
let parsedProcesses = {};
Object.keys(self.processes).forEach(processName => {

View File

@ -1,8 +1,7 @@
let serveStatic = require('serve-static');
const {canonicalHost, defaultHost, dockerHostSwap} = require('../../utils/host');
require('http-shutdown').extend();
var express = require('express');
var cors = require('cors')
var cors = require('cors');
let path = require('path');
var expressWebSocket = require('express-ws');
var bodyParser = require('body-parser');