ciyidogan commited on
Commit
17ef954
·
verified ·
1 Parent(s): 2240e02

Delete lagacy_ui/static/js/admin.js

Browse files
Files changed (1) hide show
  1. lagacy_ui/static/js/admin.js +0 -12
lagacy_ui/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
- }