mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 18:44:10 +00:00
Removed a duplicate key error output for further testing
This commit is contained in:
@@ -125,7 +125,7 @@ const GroupEdit = (props) => {
|
|||||||
error.textContent = "Duplicate key found!";
|
error.textContent = "Duplicate key found!";
|
||||||
error.style.color = "red";
|
error.style.color = "red";
|
||||||
} else {
|
} else {
|
||||||
error.textContent = "";
|
//error.textContent = "";
|
||||||
propkeys.forEach((key, i) => (propobject[key] = propvalues[i]));
|
propkeys.forEach((key, i) => (propobject[key] = propvalues[i]));
|
||||||
}
|
}
|
||||||
if (
|
if (
|
||||||
|
@@ -301,7 +301,7 @@ class APIHandler(BaseHandler):
|
|||||||
'properties': group.properties,
|
'properties': group.properties,
|
||||||
}
|
}
|
||||||
access_map = {
|
access_map = {
|
||||||
'read:groups': {'kind', 'name', 'properties','users'},
|
'read:groups': {'kind', 'name', 'properties', 'users'},
|
||||||
'read:groups:name': {'kind', 'name'},
|
'read:groups:name': {'kind', 'name'},
|
||||||
'read:roles:groups': {'kind', 'name', 'roles'},
|
'read:roles:groups': {'kind', 'name', 'roles'},
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user