Spaces:
Running
Running
File size: 437 Bytes
7e65f30 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
function seedTestData() {
apiPost('/project/seed/test_data', {})
.then(data => showResult('admin-result', data))
.catch(err => console.error(err));
}
function clearAllProjects() {
if (!confirm('Are you sure you want to clear all projects? This cannot be undone!')) return;
apiPost('/project/clear/all', {})
.then(data => showResult('admin-result', data))
.catch(err => console.error(err));
}
|