From 36d55aa252bf5bd197f51fc0fbaad24823ffbb83 Mon Sep 17 00:00:00 2001 From: Momi-V <83947761+Momi-V@users.noreply.github.com> Date: Mon, 3 Nov 2025 15:37:13 +0100 Subject: [PATCH] Add Clone trait to RefreshJwtClaims struct --- src/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.rs b/src/auth.rs index 5919cb04..aa3ab287 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -1135,7 +1135,7 @@ pub enum TokenWrapper { Refresh(String), } -#[derive(Debug, Serialize, Deserialize)] +#[derive(Clone, Debug, Serialize, Deserialize)] pub struct RefreshJwtClaims { // Not before pub nbf: i64,