use sea_orm::prelude::*; use teloxide::{adaptors::Throttle, prelude::*}; use crate::handlers::{markups::deletion_markup, utils::validate_field, MainDialogue}; /// Function to handle GetPassword state pub async fn get_password( bot: Throttle, msg: Message, db: DatabaseConnection, dialogue: MainDialogue, next: super::PackagedHandler, ) -> crate::Result<()> { super::generic::generic( bot, msg, db, dialogue, |bot, msg, _, password| { Box::pin(async move { let is_valid = validate_field(password); if !is_valid { bot.send_message(msg.chat.id, "Invalid password") .reply_markup(deletion_markup()) .await?; } Ok(is_valid) }) }, next, ) .await }