diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-01-05 18:17:47 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-01-05 18:17:47 +1000 |
commit | 21f94d5825d350bdee54f72eede880186e689c76 (patch) | |
tree | 9d359b71f9791bed50e9fb7de0d57550d02f635c /src/citron/configuration/configure_web.h | |
parent | 8f5e3516fe1921f91c8efd9c0a9cdf1a7d1124b1 (diff) |
web: Simplify web configuration and token management
- Remove telemetry functionality and related UI elements
- Add automatic token generation using UUID
- Remove manual token verification process
- Sync Citron username with profile username automatically
- Simplify web configuration UI and improve error messages
- Update host room error message for clarity
This change streamlines the web service configuration by removing
unnecessary complexity and automating token management. Users no longer
need to manually verify tokens, and the Citron username is automatically
kept in sync with their profile username.
Diffstat (limited to 'src/citron/configuration/configure_web.h')
-rw-r--r-- | src/citron/configuration/configure_web.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/citron/configuration/configure_web.h b/src/citron/configuration/configure_web.h index 51cc8ebf7..92a0d1efa 100644 --- a/src/citron/configuration/configure_web.h +++ b/src/citron/configuration/configure_web.h @@ -25,15 +25,9 @@ private: void changeEvent(QEvent* event) override; void RetranslateUI(); - void RefreshTelemetryID(); - void OnLoginChanged(); - void VerifyLogin(); - void OnLoginVerified(); + void ResetToken(); void SetConfiguration(); - bool user_verified = true; - QFutureWatcher<bool> verify_watcher; - std::unique_ptr<Ui::ConfigureWeb> ui; }; |