From 115726a173d690f0c9b49e0525778bf2855c0785 Mon Sep 17 00:00:00 2001 From: Ivan Bazulic Date: Mon, 25 Nov 2024 14:27:48 -0500 Subject: [PATCH] auth: Remove robot references from scopes list (PROJQUAY-0000) Removes references from the Oauth scopes page concerning robot accounts. Oauth tokens currently cannot be assigned to robot accounts so current wording creates confusion. --- auth/scopes.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/auth/scopes.py b/auth/scopes.py index b5f93e48d3..40e84d312a 100644 --- a/auth/scopes.py +++ b/auth/scopes.py @@ -13,7 +13,7 @@ title="View all visible repositories", description=( "This application will be able to view and pull all repositories " - "visible to the granting user or robot account" + "visible to the granting user" ), ) @@ -24,7 +24,7 @@ title="Read/Write to any accessible repositories", description=( "This application will be able to view, push and pull to all " - "repositories to which the granting user or robot account has " + "repositories to which the granting user has " "write access" ), ) @@ -36,7 +36,7 @@ title="Administer Repositories", description=( "This application will have administrator access to all " - "repositories to which the granting user or robot account has " + "repositories to which the granting user has " "access" ), ) @@ -47,8 +47,8 @@ dangerous=False, title="Create Repositories", description=( - "This application will be able to create repositories in to any " - "namespaces that the granting user or robot account is allowed " + "This application will be able to create repositories in all " + "namespaces that the granting user is allowed " "to create repositories" ), )