diff options
author | John Olheiser <john.olheiser@gmail.com> | 2023-01-20 12:42:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 13:42:54 -0500 |
commit | 46d024428f82e882c549b62c0dfb1c529a372c9b (patch) | |
tree | de54c8c3b3f7adbe974c04d2b1a52cf6917da696 /templates/user | |
parent | 86c6b0de06c9976006fb5769ab1e7e9807e963a4 (diff) | |
download | gitea-46d024428f82e882c549b62c0dfb1c529a372c9b.tar.gz gitea-46d024428f82e882c549b62c0dfb1c529a372c9b.zip |
fix: read:org scope (#22556)
Hard to see in the diff, but this was duplicated in the wrong section.
![read-org](https://user-images.githubusercontent.com/42128690/213774506-9b47ce23-d2e5-4dfd-af49-6ae4947ac724.png)
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/settings/applications.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/settings/applications.tmpl b/templates/user/settings/applications.tmpl index 5d990ac64b..c1503bb535 100644 --- a/templates/user/settings/applications.tmpl +++ b/templates/user/settings/applications.tmpl @@ -80,8 +80,8 @@ </div> <div class="field"> <div class="ui checkbox"> - <input class="enable-system" type="checkbox" name="scope" value="read:public_key"> - <label>read:public_key</label> + <input class="enable-system" type="checkbox" name="scope" value="read:org"> + <label>read:org</label> </div> </div> </div> |