about summary refs log tree commit diff
path: root/gn2/wqflask/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/views.py')
-rw-r--r--gn2/wqflask/views.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/gn2/wqflask/views.py b/gn2/wqflask/views.py
index 47233099..835a620c 100644
--- a/gn2/wqflask/views.py
+++ b/gn2/wqflask/views.py
@@ -1158,17 +1158,20 @@ def get_dataset(name):
     from gn2.wqflask.oauth2.request_utils import user_details
     from gn2.wqflask.oauth2.request_utils import process_error
 
-    result = oauth2_get(
-        f"auth/resource/authorisation/{name}"
-    ).either(
-        lambda err: {"roles": []},
-        lambda val: val
-    )
+    # We need to use the "id" as the identifier
     metadata = requests.get(
         urljoin(
             GN3_LOCAL_URL,
             f"/api/metadata/datasets/{name}")
     ).json()
+    id_ = metadata.get("id", "").split("/")[-1]
+    result = oauth2_get(
+        f"auth/resource/authorisation/{id_}"
+    ).either(
+        lambda err: {"roles": []},
+        lambda val: val
+    )
+
     metadata["editable"] = "group:resource:edit-resource" in result["roles"]
     return render_template(
         "dataset.html",