ADD: method returning available issue types

This commit is contained in:
Dominik Meyer 2018-09-15 22:30:53 +02:00
parent f630851365
commit aa470c84ce
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
1 changed files with 11 additions and 0 deletions

View File

@ -195,6 +195,17 @@ sub tag
return $tag->content;
}
=method available_types
returns an array of available/supported issue types
=cut
sub available_types
{
my $self = shift;
return ("bug","security-bug","improvement","feature","task","epic");
}
=method init