mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 06:22:24 +01:00
OAuth2: Improve authorize page wording
This commit is contained in:
parent
8b03ca6c63
commit
073dcf9517
@ -179,7 +179,7 @@ def create_edit_client(username, id_=None):
|
|||||||
if id_ is not None:
|
if id_ is not None:
|
||||||
client = OAuthClient.query.get_or_404(id_)
|
client = OAuthClient.query.get_or_404(id_)
|
||||||
if client.owner != user:
|
if client.owner != user:
|
||||||
abort(403)
|
abort(404)
|
||||||
|
|
||||||
form = OAuthClientForm(formdata=request.form, obj=client)
|
form = OAuthClientForm(formdata=request.form, obj=client)
|
||||||
if form.validate_on_submit():
|
if form.validate_on_submit():
|
||||||
@ -212,10 +212,8 @@ def delete_client(username, id_):
|
|||||||
abort(403)
|
abort(403)
|
||||||
|
|
||||||
client = OAuthClient.query.get(id_)
|
client = OAuthClient.query.get(id_)
|
||||||
if client is None:
|
if client is None or client.owner != user:
|
||||||
abort(404)
|
abort(404)
|
||||||
elif client.owner != user:
|
|
||||||
abort(403)
|
|
||||||
|
|
||||||
add_audit_log(AuditSeverity.NORMAL, current_user,
|
add_audit_log(AuditSeverity.NORMAL, current_user,
|
||||||
f"Deleted OAuth2 application {client.title} by {client.owner.username} [{client.id}]",
|
f"Deleted OAuth2 application {client.title} by {client.owner.username} [{client.id}]",
|
||||||
@ -235,10 +233,8 @@ def revoke_all(username, id_):
|
|||||||
abort(403)
|
abort(403)
|
||||||
|
|
||||||
client = OAuthClient.query.get(id_)
|
client = OAuthClient.query.get(id_)
|
||||||
if client is None:
|
if client is None or client.owner != user:
|
||||||
abort(404)
|
abort(404)
|
||||||
elif client.owner != user:
|
|
||||||
abort(403)
|
|
||||||
|
|
||||||
add_audit_log(AuditSeverity.NORMAL, current_user,
|
add_audit_log(AuditSeverity.NORMAL, current_user,
|
||||||
f"Revoked all user tokens for OAuth2 application {client.title} by {client.owner.username} [{client.id}]",
|
f"Revoked all user tokens for OAuth2 application {client.title} by {client.owner.username} [{client.id}]",
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
{{ _("Public data only") }}
|
{{ _("Public data only") }}
|
||||||
</p>
|
</p>
|
||||||
<p class="text-muted my-0">
|
<p class="text-muted my-0">
|
||||||
{{ _("Display name, username") }}
|
{{ _("Read-only access to your public data") }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user