Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 5614:be99aa02c616
issue2550833 enhance the export csv action to include the keys for
liked items rather than id's. So for nosy list display usernames and
not numbers.
The original code was renamed and also made available. See change
document.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 16 Feb 2019 15:17:21 -0500 |
| parents | 5df309febe49 |
| children | 14e176b5cd90 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Wed Feb 13 06:32:47 2019 -0500 +++ b/roundup/cgi/client.py Sat Feb 16 15:17:21 2019 -0500 @@ -1756,6 +1756,7 @@ ('retire', actions.RetireAction), ('show', actions.ShowAction), ('export_csv', actions.ExportCSVAction), + ('export_csv_id', actions.ExportCSVWithIdAction), ) def handle_action(self): """ Determine whether there should be an Action called.
