botserver/src/core/mod.rs
Rodrigo Rodriguez (Pragmatismo) 6c4ecea2fc feat(auth): Add OAuth login for Google, Discord, Reddit, Twitter, Microsoft, Facebook
- Create core/oauth module with OAuthProvider enum and shared types
- Implement providers.rs with auth URLs, token exchange, user info endpoints
- Add routes for /auth/oauth/providers, /auth/oauth/{provider}, and callbacks
- Update login.html with OAuth button grid and dynamic provider loading
- Add OAuth config settings to config.csv with setup documentation and links
- Uses HTMX for login form, minimal JS for OAuth provider visibility
2025-12-04 22:53:40 -03:00

14 lines
236 B
Rust

pub mod automation;
pub mod bootstrap;
pub mod bot;
pub mod config;
pub mod directory;
pub mod dns;
pub mod kb;
pub mod oauth;
pub mod package_manager;
pub mod rate_limit;
pub mod secrets;
pub mod session;
pub mod shared;
pub mod urls;