Update packages #15

Merged
phoenix merged 6 commits from update_packages into main 2026-06-13 19:06:51 -04:00
Showing only changes of commit 3a76ab791b - Show all commits
+3 -3
View File
@@ -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))
}