LCOV - code coverage report
Current view: top level - storage_controller/src - auth.rs (source / functions) Coverage Total Hit
Test: f081ec316c96fa98335efd15ef501745aa4f015d.info Lines: 0.0 % 7 0
Test Date: 2024-06-25 15:11:17 Functions: 0.0 % 1 0

            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