diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-05-29 15:57:41 +0100 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-05-29 15:57:41 +0100 |
commit | 67da8efc720d2d0bd22bd9fe8655b7e983b35bb4 (patch) | |
tree | 38b8570647124df06c637d4b923f6010211ef328 /bin/fetch-comments | |
parent | 40b3a51d33caefa8f5fb97ce9be18ef936c7e260 (diff) | |
parent | 131ff6e9bf3626d6a8fff6ae54669d250148a63a (diff) |
Merge remote branch 'origin/master' into fmb-read-only
Conflicts:
bin/send-reports
perllib/FixMyStreet/Cobrand/Default.pm
perllib/FixMyStreet/Cobrand/FixMyStreet.pm
templates/web/fixmystreet/alert/index.html
templates/web/fixmystreet/around/display_location.html
web/cobrands/fixmystreet/_layout.scss
web/js/map-OpenLayers.js
Diffstat (limited to 'bin/fetch-comments')
-rwxr-xr-x | bin/fetch-comments | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/fetch-comments b/bin/fetch-comments new file mode 100755 index 000000000..4bbcc9d21 --- /dev/null +++ b/bin/fetch-comments @@ -0,0 +1,15 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +require 5.8.0; + +use FixMyStreet::App; + +use Open311; +use Open311::GetServiceRequestUpdates; + + +my $updates = Open311::GetServiceRequestUpdates->new; + +$updates->fetch; |