Solomon
Solomon
can I contribute? crates/context_aware_config/src/api/functions/handlers.rs: ```rust Err(e) => match e { diesel::result::Error::DatabaseError( diesel::result::DatabaseErrorKind::ForeignKeyViolation, _, ) => { log::error!("Attempted to delete function {f_name} which is referenced by another entity: {e}"); Err(bad_argument!( "Function...
@ayushjain17 thanks for the clarification! I've removed the explicit match for FKValidation. Using the ? operator to let the error propagate. ``` .execute(&mut conn)?; { log::info!("{f_name} function deleted by {}",...