create a default category if this is the first plan in the product
This commit is contained in:
Родитель
680f94ed1c
Коммит
adb98a324e
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче