fix: Add email as an allowed scope
Some checks failed
Publish Docker / build (push) Has been cancelled

This commit is contained in:
Nathan Woodburn 2025-02-14 14:02:08 +11:00
parent 08bb610bbb
commit e01c16e166
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -38,6 +38,7 @@ lazy_static::lazy_static! {
static ref SCOPES: [Scope; 2] = [
Scope::new("openid".to_string()),
Scope::new("profile".to_string()),
Scope::new("email".to_string()),
];
}
const SIGNING_ALG: [CoreJwsSigningAlgorithm; 1] = [CoreJwsSigningAlgorithm::RsaSsaPkcs1V15Sha256];