ciyidogan's picture
Upload 19 files
833cf90 verified
raw
history blame
449 Bytes
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));
}