This is an automated email from the ASF dual-hosted git repository.

sebbASF pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 08cc45db Ensure Name is shown in diffs, even if it has not changed
08cc45db is described below

commit 08cc45db49ceafd94849917ce4f73dde23739fb5
Author: Sebb <[email protected]>
AuthorDate: Wed Jun 3 11:46:13 2026 +0100

    Ensure Name is shown in diffs, even if it has not changed
---
 www/roster/public_ldap_authgroups.rb | 2 +-
 www/roster/public_ldap_groups.rb     | 2 +-
 www/roster/public_ldap_projects.rb   | 2 +-
 www/roster/public_ldap_services.rb   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www/roster/public_ldap_authgroups.rb 
b/www/roster/public_ldap_authgroups.rb
index 1b60b836..a78279f6 100644
--- a/www/roster/public_ldap_authgroups.rb
+++ b/www/roster/public_ldap_authgroups.rb
@@ -51,7 +51,7 @@ groups.keys.sort_by(&:name).each do |entry|
   entries[entry.name] = {
     createTimestamp: entry.createTimestamp,
     modifyTimestamp: entry.modifyTimestamp,
-    modifiersName: entry.modifiersName,
+    modifiedBy: entry.modifiersName + " @ " + entry.modifyTimestamp,
     roster_count: m.size,
     roster: m
   }
diff --git a/www/roster/public_ldap_groups.rb b/www/roster/public_ldap_groups.rb
index 9881d4d0..b63350b7 100644
--- a/www/roster/public_ldap_groups.rb
+++ b/www/roster/public_ldap_groups.rb
@@ -46,7 +46,7 @@ groups.sort_by {|g, _| g.name}.each do |group, _|
   entries[group.name] = {
     createTimestamp: createTimestamp,
     modifyTimestamp: modifyTimestamp,
-    modifiersName: group.modifiersName,
+    modifiedBy: group.modifiersName + " @ " + modifyTimestamp,
     roster_count: m.size,
     roster: m
   }
diff --git a/www/roster/public_ldap_projects.rb 
b/www/roster/public_ldap_projects.rb
index 3bd7704b..2411c60e 100644
--- a/www/roster/public_ldap_projects.rb
+++ b/www/roster/public_ldap_projects.rb
@@ -80,7 +80,7 @@ projects.keys.sort_by(&:name).each do |entry|
   entries[entry.name] = {
     createTimestamp: entry.createTimestamp,
     modifyTimestamp: entry.modifyTimestamp,
-    modifiersName: entry.modifiersName,
+    modifiedBy: entry.modifiersName + " @ " + entry.modifyTimestamp,
     member_count: m.size,
     owner_count: o.size,
     members: m,
diff --git a/www/roster/public_ldap_services.rb 
b/www/roster/public_ldap_services.rb
index cf2f09aa..251059cf 100644
--- a/www/roster/public_ldap_services.rb
+++ b/www/roster/public_ldap_services.rb
@@ -45,7 +45,7 @@ groups.keys.sort_by(&:name).each do |entry|
   entries[entry.name] = {
     createTimestamp: entry.createTimestamp,
     modifyTimestamp: entry.modifyTimestamp,
-    modifiersName: entry.modifiersName,
+    modifiedBy: entry.modifiersName + " @ " + entry.modifyTimestamp,
     roster_count: m.size,
     roster: m
   }

Reply via email to