1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/casbin
yjh 89d2e4e3f7
fix typo and update some deps (#390)
* chore: fix typo for `run-in-thread`

* chore: update some deps for examples
2020-12-14 11:30:06 +00:00
..
rbac Add a basic casbin example for actix-web. (#264) 2020-03-03 15:13:43 +09:00
src v3 examples (#364) 2020-09-12 16:49:45 +01:00
Cargo.toml fix typo and update some deps (#390) 2020-12-14 11:30:06 +00:00
README.md Update dependencies for casbin example. (#300) 2020-04-20 07:52:00 +09:00

Casbin

Basic integration of Casbin-RS with RBAC for Actix web.

Usage

cd examples/casbin

Modify the files in the rbac directory and the code in the src directory as required.

Running Server

cd examples/casbin
cargo run (or ``cargo watch -x run``)

# Started http server: 127.0.0.1:8080

In this example, you can get the the successful result at http://localhost:8080/success (accessible) and the failed result at http://localhost:8080/fail (inaccessible, ERR_EMPTY_RESPONSE).

Others