We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 244ec18 commit a83cdfbCopy full SHA for a83cdfb
crates/storage/src/queue/tasks.rs
@@ -1,4 +1,4 @@
1
-// Copyright 2024 New Vector Ltd.
+// Copyright 2024, 2025 New Vector Ltd.
2
//
3
// SPDX-License-Identifier: AGPL-3.0-only
4
// Please see LICENSE in the repository root for full details.
@@ -9,7 +9,9 @@ use ulid::Ulid;
9
10
use super::InsertableJob;
11
12
-/// A job to verify an email address.
+/// This is the previous iteration of the email verification job. It has been
13
+/// replaced by [`SendEmailAuthenticationCodeJob`]. This struct is kept to be
14
+/// able to consume jobs that are still in the queue.
15
#[derive(Serialize, Deserialize, Debug, Clone)]
16
pub struct VerifyEmailJob {
17
user_email_id: Ulid,
0 commit comments