Closes #67 Add opt-in Feedback Hub widget integrated into the Settings Logs card. Routes through a Rust command to bypass CORS and centralize privacy audit. First submission triggers a one-time consent dialog; three opt-in checkboxes (context, logs, identify with Maximus account) all unchecked by default. Wording and payload follow the cross-app conventions in la-compagnie-maximus/docs/feedback-hub-ops.md. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
444 B
Rust
18 lines
444 B
Rust
pub mod account_cache;
|
|
pub mod auth_commands;
|
|
pub mod entitlements;
|
|
pub mod export_import_commands;
|
|
pub mod feedback_commands;
|
|
pub mod fs_commands;
|
|
pub mod license_commands;
|
|
pub mod profile_commands;
|
|
pub mod token_store;
|
|
|
|
pub use auth_commands::*;
|
|
pub use entitlements::*;
|
|
pub use export_import_commands::*;
|
|
pub use feedback_commands::*;
|
|
pub use fs_commands::*;
|
|
pub use license_commands::*;
|
|
pub use profile_commands::*;
|
|
pub use token_store::*;
|