Switched from sqlite to mysql database. Moved feeding frequency to the settings table. Got the alert checkboxes working correctly. Started to add update feed method and button to site.

This commit is contained in:
dan
2022-02-05 14:52:29 -05:00
parent 92578b53ae
commit 3e3daf9a98
4 changed files with 69 additions and 53 deletions

View File

@@ -1,12 +1,3 @@
function updateAlerts() {
var text = document.querySelector('#alert_text');
var email = document.querySelector('#alert_email');
alert(text.checked);
alert(email.checked);
fetch('/updateAlerts')
}
function updateFeed() {
return null;
fetch('/updateFeed')
}