chore: remove unused status endpoint and debug logging

- Remove api_get_nostr_status() - frontend calls nostrclient directly
- Remove unused httpx and settings imports
- Remove console.log debug statement

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ben Weeks 2025-12-22 14:46:30 +00:00
parent d2755d7232
commit b8c2c99175
2 changed files with 0 additions and 61 deletions

View file

@ -219,7 +219,6 @@ window.app = Vue.createApp({
try {
const response = await fetch('/nostrclient/api/v1/relays')
const body = await response.json()
console.log('Nostrclient /relays:', response.status, body)
if (response.status === 200) {
const relaysConnected = body.filter(r => r.connected).length