1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 03:35:41 +02:00

odps-auth: update

Change-Id: Ibdf4b76b3c720610d1abf48dd29e173c02cd51f4
This commit is contained in:
程亦超(何兮) 2016-05-14 11:20:48 +08:00
parent df47109481
commit e3e486e080

View file

@ -14,14 +14,14 @@
`grant {{action_list}} on {{object}} {{object_name}} to user {{user_name}};`
- Create a role:
- Create a user role:
`create role {{role_name}};`
- Grant a set of authorities to a role:
`grant {{action_list}} on {{object}} {{object_name}} to role {{role_name}};`
- Grant a role to a user:
- Grant a user role to a user:
`grant {{role_name}} to {{user_name}};`
- Grant a set of authorities to a user role:
`grant {{action_list}} on {{object}} {{object_name}} to role {{role_name}};`