1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 18:06:00 +02:00

pio-access: add page (#5518)

This commit is contained in:
marchersimon 2021-03-28 20:28:31 +02:00 committed by GitHub
parent 3d63566d9b
commit 5460bb9b94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,24 @@
# pio access
> Set the access level on published resources (packages) in the registry.
> More information: <https://docs.platformio.org/en/latest/core/userguide/access/>.
- Grant a user access to a resource:
`pio access grant {{guest|maintainer|admin}} {{username}} {{resource_urn}}`
- Remove a user's access to a resource:
`pio access revoke {{username}} {{resource_urn}}`
- Show all resources that a user or team has access to and the access level:
`pio access list {{username}}`
- Restrict access to a resource to specific users or team members:
`pio access private {{resource_urn}}`
- Allow all users access to a resource:
`pio access public {{resource_urn}}`