diff options
author | Jon Robertson <jonrober@stanford.edu> | 2015-02-07 16:09:12 -0800 |
---|---|---|
committer | Jon Robertson <jonrober@stanford.edu> | 2015-06-08 15:24:34 -0700 |
commit | f14bd8343010ad96104965029e36c5a65d231571 (patch) | |
tree | ad6d442a90102beebec32636e984fb8b4699f42d /server | |
parent | e7aed7182fe22c0f89754f96dfa6b2c6c2b665b0 (diff) |
Added an object history report to wallet-report
Took code from Commerzbank AG and refactored to add to wallet-report.
This does a complete dump of all object history for searching on.
Change-Id: Id22c51d2938ad90e0c6a19aaa016501a1ba333b3
Diffstat (limited to 'server')
-rwxr-xr-x | server/wallet-report | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/server/wallet-report b/server/wallet-report index 1c8f914..bc499d4 100755 --- a/server/wallet-report +++ b/server/wallet-report @@ -23,6 +23,7 @@ Wallet reporting help: objects All objects objects acl <acl> Objects granting permissions to that ACL objects flag <flag> Objects with that flag set + objects history History of all objects objects owner <owner> Objects owned by that owner objects type <type> Objects of that type objects unused Objects that have never been gotten @@ -75,7 +76,12 @@ sub command { print $HELP; } elsif ($command eq 'objects') { die "too many arguments to objects\n" if @args > 2; - my @objects = $report->objects (@args); + my @objects; + if (@args && $args[0] eq 'history') { + @objects = $report->objects_history (@args); + } else { + @objects = $report->objects (@args); + } if (!@objects and $report->error) { die $report->error, "\n"; } |