cedros-login-server 0.0.39

Authentication server for cedros-login with email/password, Google OAuth, and Solana wallet sign-in
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Webhook callback implementation for standalone deployments
//!
//! Sends signed HTTP POST requests to a configured URL when auth events occur.

mod callback;
mod types;
mod verification;

pub use callback::WebhookCallback;
pub use types::{
    AuthWebhookData, LogoutWebhookData, WebhookConfig, WebhookData, WebhookEvent, WebhookPayload,
};
pub use verification::verify_signature;