fix(router): Added authentication success check for fetching authentication value (#9769)

This commit is contained in:
Sahkal Poddar
2025-10-16 16:54:11 +05:30
committed by GitHub
parent c2c489407c
commit 79e1443c00
2 changed files with 10 additions and 2 deletions

View File

@ -8230,6 +8230,10 @@ impl AuthenticationStatus {
pub fn is_failed(self) -> bool {
self == Self::Failed
}
pub fn is_success(self) -> bool {
self == Self::Success
}
}
#[derive(