LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : use utils::auth::{AuthError, Claims, Scope}; 2 : 3 0 : pub fn check_permission(claims: &Claims, required_scope: Scope) -> Result<(), AuthError> { 4 0 : if claims.scope != required_scope { 5 0 : return Err(AuthError("Scope mismatch. Permission denied".into())); 6 0 : } 7 0 : 8 0 : Ok(()) 9 0 : } |
Generated by: LCOV version 2.1-beta |