From 84e8e3ab6d0c31a1c61a4749c828ea8a40df173e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Dachary?= Date: Tue, 18 Jul 2023 09:16:14 +0200 Subject: [PATCH] docs: user: oauth2: fixed scoped token table display --- user/oauth2-provider.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/oauth2-provider.md b/user/oauth2-provider.md index d61fde50..50078d38 100644 --- a/user/oauth2-provider.md +++ b/user/oauth2-provider.md @@ -36,14 +36,14 @@ Forgejo supports scoped access tokens, which allow users to restrict tokens to o Forgejo token scopes are as follows: | Name | Description | -| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | --- | +| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | | **(no scope)** | Not supported. A scope is required even for public repositories. | | **activitypub** | `activitypub` API routes: ActivityPub related operations. | |     **read:activitypub** | Grants read access for ActivityPub operations. | |     **write:activitypub** | Grants read/write/delete access for ActivityPub operations. | | **admin** | `/admin/*` API routes: Site-wide administrative operations (hidden for non-admin accounts). | |     **read:admin** | Grants read access for admin operations, such as getting cron jobs or registered user emails. | -|     **write:admin** | Grants read/write/delete access for admin operations, such as running cron jobs or updating user accounts. | | +|     **write:admin** | Grants read/write/delete access for admin operations, such as running cron jobs or updating user accounts. | | **issue** | `issues/*`, `labels/*`, `milestones/*` API routes: Issue-related operations. | |     **read:issue** | Grants read access for issues operations, such as getting issue comments, issue attachments, and milestones. | |     **write:issue** | Grants read/write/delete access for issues operations, such as posting or editing an issue comment or attachment, and updating milestones. |