From 3a76ab791bc073e9ae8b0e811e604bc480e26230 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 13 Jun 2026 18:27:03 -0400 Subject: [PATCH] Build fix --- src/token_stuff/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/token_stuff/mod.rs b/src/token_stuff/mod.rs index 7eb3511..02ecccf 100644 --- a/src/token_stuff/mod.rs +++ b/src/token_stuff/mod.rs @@ -24,7 +24,7 @@ pub fn create_token( message: String::from(MESSAGE), issuer: String::from(ISSUER), audiences: vec![String::from(AUDIENCE)], - id: *id, + user_id: *id, }; textsender_models::token::create_token(provided_key, &resource, time::Duration::hours(4)) } @@ -37,7 +37,7 @@ pub fn create_service_token( message: String::from(SERVICE_SUBJECT), issuer: String::from(ISSUER), audiences: vec![String::from(AUDIENCE)], - id: *id, + user_id: *id, }; textsender_models::token::create_token(provided, &resource, time::Duration::hours(1)) } @@ -50,7 +50,7 @@ pub fn create_service_refresh_token( message: String::from(SERVICE_SUBJECT), issuer: String::from(ISSUER), audiences: vec![String::from(AUDIENCE)], - id: *id, + user_id: *id, }; textsender_models::token::create_token(key, &resource, time::Duration::hours(4)) }