aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2018-10-05 11:40:13 +0100
committerStruan Donald <struan@exo.org.uk>2018-10-09 11:17:07 +0100
commitf738e18d1dc27aa1dbba0695a4d54d15ecd4cbf4 (patch)
tree1d2a6d90a5cdbaca03620a163a1b28c485e7706e /bin
parent27040e8daa033d68d1e8eb0cf30fc0d854443af0 (diff)
[FixMyStreet] add subcategories to fixture and enable for demo
The fixture script now generates subcategories so we need to turn these on in the Borsetshire demo site so the categories make sense.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fixmystreet.com/fixture18
1 files changed, 9 insertions, 9 deletions
diff --git a/bin/fixmystreet.com/fixture b/bin/fixmystreet.com/fixture
index c6c9b558e..8e943a5b5 100755
--- a/bin/fixmystreet.com/fixture
+++ b/bin/fixmystreet.com/fixture
@@ -46,6 +46,15 @@ my $body = FixMyStreet::DB::Factory::Body->find_or_create({
});
say "Created body " . $body->name . " for MapIt area ID " . $opt->area_id . ', categories ' . join(', ', @$categories);
+for my $cat (qw/Overflowing Broken Missing/) {
+ my $child_cat = FixMyStreet::DB::Factory::Contact->find_or_create({
+ body => $body,
+ category => $cat
+ });
+ $child_cat->set_extra_metadata( group => 'Bins' );
+ $child_cat->update;
+}
+
FixMyStreet::DB::Factory::ResponseTemplate->create({
body => $body, title => 'Generic',
text => 'Thank you for your report, we will be in touch with an update soon.' });
@@ -141,15 +150,6 @@ if ($opt->nonrandom) {
};
}
}
-
- for my $cat (qw/Overflowing Broken Missing/) {
- my $child_cat = FixMyStreet::DB::Factory::Contact->find_or_create({
- body => $body,
- category => $cat
- });
- $child_cat->set_extra_metadata( group => 'Bins' );
- $child_cat->update;
- }
} else {
for (1..$num) {
$confirmed->add(seconds => rand(7000));