diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-09-23 01:13:54 +0200 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-09-23 01:13:54 +0200 |
commit | fa35d46b5ae356d2e35dc266a933ee59f56fec16 (patch) | |
tree | c93db558a6324122ff6c8fa3ea805bd0bf8ed29c | |
parent | Redhat URL moved. (diff) | |
download | rbot-bugzilla-fa35d46b5ae356d2e35dc266a933ee59f56fec16.tar.gz rbot-bugzilla-fa35d46b5ae356d2e35dc266a933ee59f56fec16.tar.bz2 rbot-bugzilla-fa35d46b5ae356d2e35dc266a933ee59f56fec16.zip |
Add IN_PROGRESS, CONFIRMED
-rw-r--r-- | bugzilla.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb index 474c7eb..d428ddb 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -29,7 +29,7 @@ String.send(:include, BugzillaStringExtensions) # Valid statuses # 'DONE' and 'OPEN' are special cases that expand to the rest of the statuses in that array DONE_STATUS = ['DONE','RESOLVED','VERIFIED','CLOSED'] -OPEN_STATUS = ['OPEN','UNCONFIRMED','NEW','ASSIGNED','REOPENED'] +OPEN_STATUS = ['OPEN','UNCONFIRMED','NEW','ASSIGNED','REOPENED', 'IN_PROGRESS', 'CONFIRMED'] VALID_RESO = ['FIXED', 'INVALID', 'WONTFIX', 'LATER', 'REMIND', 'DUPLICATE', 'WORKSFORME', 'CANTFIX', 'NEEDINFO', 'TEST-REQUEST', 'UPSTREAM'] # Each zilla instance may have these parameters |