Skip to content

Commit 0fa4d4f

Browse files
committed
Implement update workspace
1 parent ae3b152 commit 0fa4d4f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

services/conversation/v1-workspace-manager.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ module.exports = function (RED) {
168168
// 'counterexamples'
169169
function setWorkspaceParams(method, params, workspaceObject) {
170170
var workspace_id = null;
171-
if ('updateWorkspace' == method && params['workspace_id'])
172-
{
171+
if ('updateWorkspace' === method && params['workspace_id']) {
173172
workspace_id = params['workspace_id'];
174173
}
175174
if (workspaceObject) {

0 commit comments

Comments
 (0)