forked from
oyster.cafe/bspds-sandbox
fork
Configure Feed
Select the types of activity you want to include in your feed.
PDS software with bells & whistles you didn’t even know you needed. will move this to its own account when ready.
fork
Configure Feed
Select the types of activity you want to include in your feed.
1pub mod locale;
2mod sender;
3mod service;
4mod types;
5
6pub use sender::{
7 CommsSender, DiscordSender, EmailSender, SendError, SignalSender, TelegramSender,
8 is_valid_phone_number, sanitize_header_value,
9};
10
11pub use service::{
12 CommsService, channel_display_name, enqueue_2fa_code, enqueue_account_deletion, enqueue_comms,
13 enqueue_email_update, enqueue_email_update_token, enqueue_migration_verification,
14 enqueue_passkey_recovery, enqueue_password_reset, enqueue_plc_operation,
15 enqueue_signup_verification, enqueue_welcome, queue_legacy_login_notification,
16};
17
18pub use types::{CommsChannel, CommsStatus, CommsType, NewComms, QueuedComms};