We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6f54f commit f9e0f82Copy full SHA for f9e0f82
static/settings.js
@@ -1,3 +1,16 @@
1
+// Add this to the top of settings.js to debug
2
+console.log('Settings page loaded');
3
+
4
+// Check if the GET request works
5
+fetch('/settings/api/da-config')
6
+ .then(response => {
7
+ console.log('GET /settings/api/da-config - Status:', response.status);
8
+ if (response.status === 405) {
9
+ console.error('GET method not allowed!');
10
+ }
11
+ });
12
13
14
// Load current settings on page load
15
document.addEventListener('DOMContentLoaded', async () => {
16
try {
0 commit comments