diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-08-07 22:06:39 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-08-07 22:06:39 +0000 |
commit | 3f9794cfc3c186517b1aff6b2a478c36fc38d2a9 (patch) | |
tree | f8a316995cb2c1ac6dcda0c9dea54b2510409eca | |
parent | lowercase. (diff) | |
download | rbot-bugzilla-3f9794cfc3c186517b1aff6b2a478c36fc38d2a9.tar.gz rbot-bugzilla-3f9794cfc3c186517b1aff6b2a478c36fc38d2a9.tar.bz2 rbot-bugzilla-3f9794cfc3c186517b1aff6b2a478c36fc38d2a9.zip |
Thread the long calls.
-rw-r--r-- | bugzilla.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bugzilla.rb b/bugzilla.rb index d41b0bd..8fb6335 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -1024,6 +1024,7 @@ plugin.map 'bug :zilla :number', }, :defaults => { :zilla => nil }, :action => 'bug', + :thread => 'yes', :auth_path => 'view' plugin.map 'bugstats :zilla', @@ -1034,6 +1035,7 @@ plugin.map 'bugstats :zilla', :zilla => nil, }, :action => 'bugstats', + :thread => 'yes', :auth_path => 'view' plugin.map 'archstats :zilla :status :reso', @@ -1048,6 +1050,7 @@ plugin.map 'archstats :zilla :status :reso', :reso => nil, }, :action => 'archstats', + :thread => 'yes', :auth_path => 'view' plugin.map 'zilla instance add :zilla :baseurl', @@ -1117,6 +1120,7 @@ plugin.map 'zilla default show :channel', plugin.map 'zilla default dump', :action => 'channel_defaults_dump', + :thread => 'yes', :auth_path => 'view' plugin.map 'zilla announcement add :zilla :channel', |