]> source.dussan.org Git - sonarqube.git/commitdiff
pass keys to api/settings/reset
authorStas Vilchik <vilchiks@gmail.com>
Fri, 2 Sep 2016 12:07:06 +0000 (14:07 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 2 Sep 2016 13:50:27 +0000 (15:50 +0200)
server/sonar-web/src/main/js/api/settings.js

index 14396243a2f6f9f70b06d02519454676a4dd8af5..6792f6b081cf33bcdcb17cd51dcf2a78d1914270 100644 (file)
@@ -61,7 +61,7 @@ export function setSettingValue (definition, value, componentKey) {
 
 export function resetSettingValue (key, componentKey) {
   const url = '/api/settings/reset';
-  const data = { key };
+  const data = { keys: key };
   if (componentKey) {
     data.componentKey = componentKey;
   }