2020-03-03 07:13:43 +01:00
# Casbin
2022-02-06 09:25:38 +01:00
Basic integration of [Casbin-RS ](https://github.com/casbin/casbin-rs ) with [RBAC ](https://en.wikipedia.org/wiki/Role-based_access_control ) for Actix Web.
2020-03-03 07:13:43 +01:00
## Usage
```sh
2022-02-18 03:18:44 +01:00
cd auth/casbin
2020-03-03 07:13:43 +01:00
```
Modify the files in the `rbac` directory and the code in the `src` directory as required.
## Running Server
```sh
2022-02-18 03:18:44 +01:00
cd auth/casbin
2020-03-03 07:13:43 +01:00
cargo run (or ``cargo watch -x run``)
# Started http server: 127.0.0.1:8080
```
2023-04-03 15:00:43 +02:00
In this example, you can get the:
- successful result at [http://localhost:8080/success ](http://localhost:8080/success ) (accessible)
- failed result at [http://localhost:8080/fail ](http://localhost:8080/fail ) (inaccessible, `ERR_EMPTY_RESPONSE` ).
2020-03-03 07:13:43 +01:00
## Others
- For more related examples of [Casbin-RS ](https://github.com/casbin/casbin-rs ): < https: // github . com / casbin-rs / examples >