Skip to content

Commit

Permalink
Update scope documentation
Browse files Browse the repository at this point in the history
Signed-off-by: nyagamunene <[email protected]>
  • Loading branch information
nyagamunene committed Nov 7, 2024
1 parent 6fc91fa commit c939889
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions auth/pat.go
Original file line number Diff line number Diff line change
Expand Up @@ -514,17 +514,17 @@ func (ds *DomainScope) Check(domainEntityType DomainEntityType, operation Operat
// "domain_1": {
// "entities": {
// "groups": {
// "create": {}, // this for all groups in domain
// "create": ["*"] // this for all groups in domain
// },
// "channels": {
// // for particular channel in domain
// "delete": {
// "channel1": {},
// "channel2":{}
// }
// "delete": [
// "channel1",
// "channel2"
// ]
// },
// "things": {
// "update": {} // this for all things in domain
// "update": ["*"] // this for all things in domain
// }
// }
// }
Expand Down

0 comments on commit c939889

Please sign in to comment.