diff options
author | Dave Arter <davea@mysociety.org> | 2018-05-25 17:24:59 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2018-05-30 14:36:28 +0100 |
commit | 04d12e431bf89d5fd05d4f53335e70ab9d8082d4 (patch) | |
tree | 03817d95dc9e2f360f7d67bdd064b00d10e8449e | |
parent | 628b8ef250aff87cf1802fa01279caf81b139f0c (diff) |
Call cobrand hook to add extra CSV columns on dashboard export
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Dashboard.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Dashboard.pm b/perllib/FixMyStreet/App/Controller/Dashboard.pm index 866deb98e..7894e8ccb 100644 --- a/perllib/FixMyStreet/App/Controller/Dashboard.pm +++ b/perllib/FixMyStreet/App/Controller/Dashboard.pm @@ -333,6 +333,7 @@ sub export_as_csv : Private { } sort keys %where }, }; + $c->cobrand->call_hook("dashboard_export_add_columns"); $c->forward('generate_csv'); } |