removed authorization for browser user

This commit is contained in:
2026-08-09 17:25:45 +02:00
parent b477737bad
commit 2677c81d0f
4 changed files with 18 additions and 61 deletions
+1 -3
View File
@@ -9,7 +9,6 @@ from __future__ import annotations
import argparse
import json
import secrets
import ssl
import sys
from dataclasses import dataclass
@@ -229,9 +228,8 @@ def register(args: argparse.Namespace) -> None:
**existing,
"bridge": bridge.host,
"app_key": app_key,
"api_key": existing.get("api_key", secrets.token_urlsafe(32)),
})
print(f"Saved bridge address, application key, and dashboard API key in {config_path}")
print(f"Saved bridge address and application key in {config_path}")
def build_parser() -> argparse.ArgumentParser: