diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-12-13 11:18:12 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-12-15 00:11:05 +0000 |
commit | 5b0e94269864a0a757d5954c1413888eb798f898 (patch) | |
tree | e4c5f293277d563ac82d0c2c4842022976193e20 /bin | |
parent | fa4947c017af7599699892c1c3a647fc61f971ed (diff) |
Remove unused Open311 GetUpdates code.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/open311-update-reports | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/open311-update-reports b/bin/open311-update-reports deleted file mode 100644 index e7ff34273..000000000 --- a/bin/open311-update-reports +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use Open311::GetUpdates; -use FixMyStreet::App; - -# FIXME - make this configurable and/or better -my $system_user = FixMyStreet::App->model('DB::User')->find_or_create( - { - email => FixMyStreet::App->config->{'CONTACT_EMAIL'}, - name => 'System User', - } -); - -my $council_list = FixMyStreet::App->model('DB::Body'); - -my $update = Open311::GetUpdates->new( - council_list => $council_list, - system_user => $system_user -)->get_updates; |