diff options
author | dklawren <dklawren@users.noreply.github.com> | 2018-07-25 22:36:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 22:36:47 +0200 |
commit | 2f1edccbe351176eaf69a6042945f84a5417c0b7 (patch) | |
tree | ac76daf5e1e6e7ca0b111164a3847e0e81003e8a /extensions/PhabBugz/lib | |
parent | 7dadc66b5c3895ff5d9a83de1dcde49f8f523554 (diff) | |
download | bugzilla-2f1edccbe351176eaf69a6042945f84a5417c0b7.tar.gz bugzilla-2f1edccbe351176eaf69a6042945f84a5417c0b7.tar.xz |
Bug 1478012 Phab allows projects to have empty descriptions so Project.pm in PhabBugz should allow the same
Diffstat (limited to 'extensions/PhabBugz/lib')
-rw-r--r-- | extensions/PhabBugz/lib/Project.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/PhabBugz/lib/Project.pm b/extensions/PhabBugz/lib/Project.pm index 3d93e2f04..b93a6eb9e 100644 --- a/extensions/PhabBugz/lib/Project.pm +++ b/extensions/PhabBugz/lib/Project.pm @@ -26,7 +26,7 @@ has id => ( is => 'ro', isa => Int ); has phid => ( is => 'ro', isa => Str ); has type => ( is => 'ro', isa => Str ); has name => ( is => 'ro', isa => Str ); -has description => ( is => 'ro', isa => Str ); +has description => ( is => 'ro', isa => Maybe[Str] ); has creation_ts => ( is => 'ro', isa => Str ); has modification_ts => ( is => 'ro', isa => Str ); has view_policy => ( is => 'ro', isa => Str ); |