Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 10


HTML
<button onclick="update();" />

<script>


function update() {

fetch('/rest/confiforms/1.0/search/133259957/IFSContent')
  .then((response) => response.json())
  .then(function(data) { 
    data.list.entry.forEach(item => fetch('/rest/confiforms/1.0/update/133259957/IFSContent/'+item.id,{method:"POST", headers:{"X-Atlassian-Token": "no-check"}}));
  }
);

}
</script>


Children Display