Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

29
tldr/pio-access Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`