Browse Source

Change timeboard.update to use PUT, per DataDog API

pull/43/head
Ryan Scheuermann 10 years ago
parent
commit
8a5dc4dd9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/api/timeboard.js

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

@ -144,7 +144,7 @@ function update(dashId, title, description, graphs, templateVariables, callback)
params.body.template_variables = templateVariables;
}
client.request("POST", util.format("/dash/%s", dashId), params, callback);
client.request("PUT", util.format("/dash/%s", dashId), params, callback);
}
/*section: timeboard


Loading…
Cancel
Save