pdt 0.3.5

Asset store API with relation graphs, tagging, full-text search, multi-instance SQLite tenancy, OIDC auth and Cedar authorization
1
2
3
4
5
6
7
8
9
10
//! Cedar ABAC authorization integration for PDT
//!
//! This module wires PEP's Cedar authorizer into PDT's asset handlers.
//! Assets with an `auth_context` field go through Cedar evaluation;
//! assets without it (grandfathered) pass through with open access.

pub mod entity;
pub mod enforcement;

pub use enforcement::should_enforce_cedar;