diff options
author | Frederick Muriuki Muriithi | 2023-05-25 19:11:49 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-05-25 19:11:49 +0300 |
commit | 256f13f675c60547b10a06736f0a7cb3faf752d5 (patch) | |
tree | 3e5a29212de06312424b521055a5f17e9e9dc79b /gn3/auth/authorisation/groups | |
parent | 8593d882ed1eea226eeefabaa66135df2374746f (diff) | |
download | genenetwork3-256f13f675c60547b10a06736f0a7cb3faf752d5.tar.gz |
Script to assign existing data to publicly-visible resources
A script to assign existing data not assigned to any group to publicly-visible
resources.
Diffstat (limited to 'gn3/auth/authorisation/groups')
-rw-r--r-- | gn3/auth/authorisation/groups/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/auth/authorisation/groups/models.py b/gn3/auth/authorisation/groups/models.py index ea629e0..5a3ae50 100644 --- a/gn3/auth/authorisation/groups/models.py +++ b/gn3/auth/authorisation/groups/models.py @@ -94,7 +94,7 @@ def create_group( raise MembershipError(group_leader, user_groups) with db.cursor(conn) as cursor: - new_group = __save_group__( + new_group = save_group( cursor, group_name,( {"group_description": group_description} if group_description else {})) @@ -198,7 +198,7 @@ def all_groups(conn: db.DbConnection) -> Maybe[Sequence[Group]]: return Nothing -def __save_group__( +def save_group( cursor: db.DbCursor, group_name: str, group_metadata: dict[str, Any]) -> Group: """Save a group to db""" |