Spaces:
Paused
Paused
| 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)); | |
| } | |