retire APIView

This commit is contained in:
Emmanuel Viennet 2022-08-26 10:03:21 +02:00
parent b58a62f77e
commit 5cc4c5ca2a
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@
```json ```json
[ [
"ScoSuperAdmin", "ScoSuperAdmin",
"APIView", "ScoView",
"..." "..."
] ]
``` ```

View File

@ -3,13 +3,14 @@
#### POST /role/customRole/edit #### POST /role/customRole/edit
> `Content-Type: application/json` > `Content-Type: application/json`
> >
> `{ "name" : "LaveurDeVitres", "permissions" : [ "ScoView", "APIView" ] }` > `{ "name" : "LaveurDeVitres", "permissions" : [ "ScoView", "ScoAbsChange" ] }`
```json ```json
{ {
"id": 13, "id": 13,
"permissions": [ "permissions": [
"ScoView" "ScoView",
"ScoAbsChange"
], ],
"role_name": "customRole" "role_name": "customRole"
} }