The smokesignal.events web application
at main 89 lines 2.4 kB view raw
1pub mod acceptance_operations; 2pub mod acceptance_utils; 3pub mod auth_utils; 4pub mod cache_countries; 5pub mod context; 6pub mod cookies; 7pub mod errors; 8pub mod event_form; 9pub mod event_validation; 10pub mod event_view; 11pub mod h3_utils; 12pub mod handle_accept_rsvp; 13pub mod handle_admin_content_list; 14pub mod handle_admin_content_view; 15pub mod handle_admin_denylist; 16pub mod handle_admin_event; 17pub mod handle_admin_event_index; 18pub mod handle_admin_events; 19pub mod handle_admin_handles; 20pub mod handle_admin_identity_profile; 21pub mod handle_admin_import_event; 22pub mod handle_admin_import_rsvp; 23pub mod handle_admin_index; 24pub mod handle_admin_profile_index; 25pub mod handle_admin_rsvp; 26pub mod handle_admin_rsvp_accept; 27pub mod handle_admin_rsvp_accepts; 28pub mod handle_admin_rsvps; 29pub mod handle_admin_search_index; 30pub mod handle_admin_tap; 31pub mod handle_api_mcp_configuration; 32pub mod handle_blob; 33pub mod handle_bulk_accept_rsvps; 34pub mod handle_content; 35pub mod handle_create_event; 36pub mod handle_create_rsvp; 37pub mod handle_delete_event; 38pub mod handle_edit_event; 39pub mod handle_edit_settings; 40pub mod handle_email_confirm; 41pub mod handle_export_ics; 42pub mod handle_export_rsvps; 43pub mod handle_finalize_acceptance; 44pub mod handle_geo_aggregation; 45pub mod handle_health; 46pub mod handle_host_meta; 47pub mod handle_import; 48pub mod handle_index; 49pub mod handle_lfg; 50pub mod handle_location; 51pub mod handle_location_suggestions; 52pub mod handle_mailgun_webhook; 53pub mod handle_manage_event; 54pub mod handle_manage_event_content; 55pub mod handle_mcp; 56pub mod handle_mcp_oauth; 57pub mod handle_oauth; 58pub mod handle_policy; 59pub mod handle_preview_description; 60pub mod handle_profile; 61pub mod handle_quick_event; 62pub mod handle_search; 63pub mod handle_set_language; 64pub mod handle_settings; 65pub mod handle_share_rsvp_bluesky; 66pub mod handle_unaccept_rsvp; 67pub mod handle_unsubscribe; 68pub mod handle_view_event; 69pub mod handle_wellknown; 70pub mod handle_xrpc_configure_event; 71pub mod handle_xrpc_get_event; 72pub mod handle_xrpc_get_rsvp; 73pub mod handle_xrpc_link_attestation; 74pub mod handle_xrpc_search_events; 75pub mod import_utils; 76pub mod lfg_form; 77pub mod location_edit_status; 78pub mod macros; 79pub mod mcp_jwt; 80pub mod middleware_auth; 81pub mod middleware_i18n; 82pub mod pagination; 83pub mod profile_import; 84pub mod rsvp_form; 85pub mod server; 86pub mod tab_selector; 87pub mod templates; 88pub mod timezones; 89pub mod utils;