2025-11-22 22:55:35 -03:00
|
|
|
pub mod automation;
|
|
|
|
|
pub mod bootstrap;
|
|
|
|
|
pub mod bot;
|
|
|
|
|
pub mod config;
|
2025-11-29 16:29:28 -03:00
|
|
|
pub mod directory;
|
|
|
|
|
pub mod dns;
|
2025-11-26 22:54:22 -03:00
|
|
|
pub mod kb;
|
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
|
|
|
pub mod oauth;
|
2025-11-22 22:55:35 -03:00
|
|
|
pub mod package_manager;
|
2025-12-03 22:23:30 -03:00
|
|
|
pub mod rate_limit;
|
2025-11-30 16:25:51 -03:00
|
|
|
pub mod secrets;
|
2025-11-22 22:55:35 -03:00
|
|
|
pub mod session;
|
|
|
|
|
pub mod shared;
|
2025-11-29 16:29:28 -03:00
|
|
|
pub mod urls;
|