From 938efc6d8d2713d5f8dd399e9c878b95832ac882 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 27 Sep 2023 10:00:25 +0300 Subject: linting: Remove unused import, handle unused variable --- gn_auth/auth/authorisation/resources/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gn_auth/auth/authorisation/resources') diff --git a/gn_auth/auth/authorisation/resources/views.py b/gn_auth/auth/authorisation/resources/views.py index de2fd6c..25f621d 100644 --- a/gn_auth/auth/authorisation/resources/views.py +++ b/gn_auth/auth/authorisation/resources/views.py @@ -22,7 +22,7 @@ from .models import ( assign_resource_user, link_data_to_resource, unassign_resource_user, resource_category_by_id, unlink_data_from_resource, create_resource as _create_resource) -from .groups.models import Group, GroupRole, resource_owner, group_role_by_id +from .groups.models import Group, resource_owner, group_role_by_id resources = Blueprint("resources", __name__) @@ -153,9 +153,9 @@ def resource_users(resource_id: uuid.UUID): """Retrieve all users with access to the given resource.""" with require_oauth.acquire("profile group resource") as the_token: def __the_users__(conn: db.DbConnection): - resource = resource_by_id(conn, the_token.user, resource_id) authorised = authorised_for( - conn, the_token.user, ("group:resource:edit-resource",), + conn, the_token.user, + ("group:resource:edit-resource","group:resource:view-resource"), (resource_id,)) if authorised.get(resource_id, False): with db.cursor(conn) as cursor: -- cgit v1.2.3