Attribute Macro actix_web_grants::proc_macro::has_any_permission[][src]

#[has_any_permission]

Macro to сheck that the user has any of the specified permissions.

Examples

use actix_web_grants::proc_macro::has_any_permission;
use actix_web::HttpResponse;

// User should be ADMIN or MANAGER
#[has_any_permission["ROLE_ADMIN", "ROLE_MANAGER"]]
async fn macro_secured() -> HttpResponse {
    HttpResponse::Ok().body("some secured info")
}