ciyidogan commited on
Commit
e122ec7
·
verified ·
1 Parent(s): 833cf90

Delete static/js/admin.js

Browse files
Files changed (1) hide show
  1. static/js/admin.js +0 -12
static/js/admin.js DELETED
@@ -1,12 +0,0 @@
1
- function seedTestData() {
2
- apiPost('/project/seed/test_data', {})
3
- .then(data => showResult('admin-result', data))
4
- .catch(err => console.error(err));
5
- }
6
-
7
- function clearAllProjects() {
8
- if (!confirm('Are you sure you want to clear all projects? This cannot be undone!')) return;
9
- apiPost('/project/clear/all', {})
10
- .then(data => showResult('admin-result', data))
11
- .catch(err => console.error(err));
12
- }