First one #8

Merged
phoenix merged 42 commits from get_it_going into v0.2.0 2026-06-13 19:49:15 -04:00
Showing only changes of commit 80a79f2b96 - Show all commits
+1 -1
View File
@@ -41,7 +41,7 @@ pub async fn auth<B>(
.value;
let mut validation = Validation::new(jsonwebtoken::Algorithm::HS256);
validation.set_audience(&["icarus"]); // Must match exactly what's in the token
validation.set_audience(&["textsender"]); // Must match exactly what's in the token
let _claims = decode::<textsender_models::token::Claims>(
&token,
&DecodingKey::from_secret(secret_key.as_ref()),