diff options
author | Denys Konovalov <privat@denyskon.de> | 2023-06-05 09:00:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 15:00:12 +0800 |
commit | ca35dec18b3d3d7dd5cde4c69a10ae830961faf7 (patch) | |
tree | e52b1b9c3032aadd8b5fae7dabec88b0de7ef4b4 /options | |
parent | 7d192cb674bc475b123c84b205aca821247c5dd1 (diff) | |
download | gitea-ca35dec18b3d3d7dd5cde4c69a10ae830961faf7.tar.gz gitea-ca35dec18b3d3d7dd5cde4c69a10ae830961faf7.zip |
Add ability to set multiple redirect URIs in OAuth application UI (#25072)
OAuth applications can already have multiple redirect URIs if
created/edited over API.
This change allows for setting multiple redirect URIs through the UI as
a comma-separated list (e. g.
`https://example.org/redirect,https://redirect.example.org`)
<details>
<summary>Screenshots</summary>
![Bildschirmfoto vom 2023-06-04
17-14-40](https://github.com/go-gitea/gitea/assets/47871822/2206dc32-e7e4-4953-9ecb-e098890b3f54)
![Bildschirmfoto vom 2023-06-04
17-14-50](https://github.com/go-gitea/gitea/assets/47871822/cd97c73c-9310-44ee-a83a-b927a1ef94da)
</details>
Closes #25068
Diffstat (limited to 'options')
-rw-r--r-- | options/locale/locale_en-US.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index 0abf1b3e05..2245d9bae0 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -826,7 +826,7 @@ create_oauth2_application_success = You've successfully created a new OAuth2 app update_oauth2_application_success = You've successfully updated the OAuth2 application. oauth2_application_name = Application Name oauth2_confidential_client = Confidential Client. Select for apps that keep the secret confidential, such as web apps. Do not select for native apps including desktop and mobile apps. -oauth2_redirect_uri = Redirect URI +oauth2_redirect_uris = Redirect URIs. Please use a new line for every URI. save_application = Save oauth2_client_id = Client ID oauth2_client_secret = Client Secret |