summaryrefslogtreecommitdiffstats
path: root/src/auth
diff options
context:
space:
mode:
Diffstat (limited to 'src/auth')
-rw-r--r--src/auth/claims.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth/claims.rs b/src/auth/claims.rs
index e5cfd25..ff582a3 100644
--- a/src/auth/claims.rs
+++ b/src/auth/claims.rs
@@ -141,7 +141,7 @@ impl IntoResponseParts for RefreshClaims {
impl IntoResponse for RefreshClaims {
fn into_response(self) -> axum::response::Response {
- (self, ()).into_response()
+ JWT.encode(&self).into_response()
}
}