create a default category if this is the first plan in the product

This commit is contained in:
ghendricks%novell.com 2007-02-08 22:42:39 +00:00
Родитель 680f94ed1c
Коммит adb98a324e
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -192,6 +192,15 @@ sub store {
$self->derive_regexp_testers(Param('testopia-default-plan-testers-regexp'));
}
# Create default category
unless (scalar @{$self->product->categories}){
my $category = Bugzilla::Testopia::Category->new(
{'name' => '--default--',
'description' => 'Default product category for test cases',
'product_id' => $self->product->id });
$category->store;
}
return $key;
}