1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/casbin/rbac/rbac_model.conf
Chojan Shang 84b364544b
Add a basic casbin example for actix-web. (#264)
* Add the casbin example for actix-web.

* Update for clear description.
2020-03-03 15:13:43 +09:00

14 lines
223 B
Plaintext

[request_definition]
r = sub, obj, act
[policy_definition]
p = sub, obj, act
[role_definition]
g = _, _
[policy_effect]
e = some(where (p.eft == allow))
[matchers]
m = g(r.sub, p.sub) && r.obj == p.obj && r.act == p.act