about summary refs log tree commit diff
path: root/gn_auth/auth
diff options
context:
space:
mode:
authorzsloan2024-08-21 16:50:42 +0000
committerzsloan2024-08-21 16:51:40 +0000
commitd230cd9d56b585f775def84a8c95b60238ce9f00 (patch)
tree1749d14d46475369e4868cac8d4669c045d76210 /gn_auth/auth
parent3761e1139e591e61f84755cf73d080e14bcaeee1 (diff)
downloadgn-auth-d230cd9d56b585f775def84a8c95b60238ce9f00.tar.gz
Update 'changed' field when traits are added or removed from collections
Diffstat (limited to 'gn_auth/auth')
-rw-r--r--gn_auth/auth/authorisation/users/collections/models.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gn_auth/auth/authorisation/users/collections/models.py b/gn_auth/auth/authorisation/users/collections/models.py
index b4a24f3..f0a7fa2 100644
--- a/gn_auth/auth/authorisation/users/collections/models.py
+++ b/gn_auth/auth/authorisation/users/collections/models.py
@@ -205,8 +205,10 @@ def add_traits(rconn: Redis,
     mod_col = tuple(coll for coll in ucolls if coll["id"] == collection_id)
     __raise_if_not_single_collection__(user, collection_id, mod_col)
     new_members = tuple(set(tuple(mod_col[0]["members"]) + traits))
+    now = datetime.utcnow()
     new_coll = {
         **mod_col[0],
+        "changed": now,
         "members": new_members,
         "num_members": len(new_members)
     }
@@ -233,8 +235,10 @@ def remove_traits(rconn: Redis,
     __raise_if_not_single_collection__(user, collection_id, mod_col)
     new_members = tuple(
         trait for trait in mod_col[0]["members"] if trait not in traits)
+    now = datetime.utcnow()
     new_coll = {
         **mod_col[0],
+        "changed": now,
         "members": new_members,
         "num_members": len(new_members)
     }