From afe798dae0bd25f3b654a236fbb8ec8df2fd48cb Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 30 Oct 2025 09:55:11 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(rule=5Fprocessor):=20clarif?= =?UTF-8?q?y=20Gmail=20API=20scope=20requirement?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - refine the documentation for batch_delete and call_batch_delete functions - specify the exact `https://mail.google.com/` scope needed --- src/rule_processor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rule_processor.rs b/src/rule_processor.rs index c9bbc9d..b7f0575 100644 --- a/src/rule_processor.rs +++ b/src/rule_processor.rs @@ -304,7 +304,7 @@ pub trait RuleProcessor { /// /// # Gmail API Requirements /// - /// Requires the `https://mail.google.com/` scope or broader. + /// Requires the `https://mail.google.com/` scope. fn batch_delete(&mut self) -> impl std::future::Future> + Send; /// Calls the Gmail API to move a slice of the prepared messages to the Gmail @@ -356,7 +356,7 @@ pub trait RuleProcessor { /// /// # Gmail API Requirements /// - /// Requires the `https://mail.google.com/` scope or broader. + /// Requires the `https://mail.google.com/` scope. fn call_batch_delete( &self, ids: &[String],