Merge pull request #132 from zauberpony/fix-claim-field-name

fix 'subject' name in service-account claim
This commit is contained in:
ggriffiniii
2020-05-28 11:31:13 -07:00
committed by GitHub

View File

@@ -92,6 +92,7 @@ struct Claims<'a> {
aud: &'a str,
exp: i64,
iat: i64,
#[serde(rename = "sub")]
subject: Option<&'a str>,
scope: String,
}