Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1809 from elisherer/feature/auth-better-acl-example
Browse files Browse the repository at this point in the history
Auth - Change to a better ACL example
  • Loading branch information
apanicker-nflx committed Jul 28, 2020
2 parents 131d346 + 020084d commit a30701c
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions ui/src/auth/README.md
Expand Up @@ -69,12 +69,11 @@ See example of use:
},
"audit": true,
"acl": [
"GET /favicon.ico *",
"GET /(styles|js|images|fonts)/(.*) *",
"GET /(.*) viewer",
"PUT /(.*) admin",
"POST /(.*) admin",
"DELETE /(.*) admin"
"PUT /(.*) admin",
"DELETE /(.*) admin",
"GET /api/(.*) viewer",
"GET /(.*) *"
]
}
```
Expand Down Expand Up @@ -115,12 +114,11 @@ See example of use:
},
"audit": true,
"acl": [
"GET /favicon.ico *",
"GET /(styles|js|images|fonts)/(.*) *",
"GET /(.*) viewer",
"PUT /(.*) admin",
"POST /(.*) admin",
"DELETE /(.*) admin"
"PUT /(.*) admin",
"DELETE /(.*) admin",
"GET /api/(.*) viewer",
"GET /(.*) *"
]
}
```
Expand Down

0 comments on commit a30701c

Please sign in to comment.