Browse Source

The Screenboard Update API call requires the boardID to be part of the url path /screen/{boardId}

pull/58/head
Mike Iskiw 8 years ago
parent
commit
8d65317a8d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/api/screenboard.js

+ 1
- 1
lib/api/screenboard.js View File

@ -172,7 +172,7 @@ function update(boardId, boardTitle, widgets, options, callback) {
params.body.read_only = options.readOnly;
}
client.request("PUT", "/screen", params, callback);
client.request("PUT", util.format("/screen/%s", boardId), params, callback);
}
/*section: screenboard


Loading…
Cancel
Save