Extracts group names from the configured JWT claim for group-to-role sync. See [`mz_auth::group_claims::extract_groups`] for semantics.
(&self, claim_path: &str)
| 250 | /// Extracts group names from the configured JWT claim for group-to-role |
| 251 | /// sync. See [`mz_auth::group_claims::extract_groups`] for semantics. |
| 252 | pub fn groups(&self, claim_path: &str) -> Option<Vec<String>> { |
| 253 | mz_auth::group_claims::extract_groups(&self.unknown_claims, claim_path) |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | #[derive(Zeroize, ZeroizeOnDrop)] |
no test coverage detected