flare / static /js /admin.js
ciyidogan's picture
Create admin.js
7e65f30 verified
raw
history blame
437 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));
}