diff options
author | Johan Sørensen <johan@johansorensen.com> | 2009-11-24 09:29:00 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2009-11-24 09:29:00 +0100 |
commit | 99f9a2974da2455a47548a61dcc6ac126687dd16 (patch) | |
tree | dac9fdb8c62d02abd43361897ba56070209d9db0 /app/models/committership.rb | |
parent | c7b03c65858c22c238ef42b64d3f65e33b91dd8c (diff) | |
download | gitorious-mainline-outdated-99f9a2974da2455a47548a61dcc6ac126687dd16.zip gitorious-mainline-outdated-99f9a2974da2455a47548a61dcc6ac126687dd16.tar.gz gitorious-mainline-outdated-99f9a2974da2455a47548a61dcc6ac126687dd16.tar.bz2 |
No reason to skip bits in the Committership permissions
Diffstat (limited to 'app/models/committership.rb')
-rw-r--r-- | app/models/committership.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/committership.rb b/app/models/committership.rb index ade7265..ea9e928 100644 --- a/app/models/committership.rb +++ b/app/models/committership.rb @@ -21,8 +21,8 @@ class Committership < ActiveRecord::Base - CAN_REVIEW = 1 << 2 - CAN_COMMIT = 1 << 4 + CAN_REVIEW = 1 << 4 + CAN_COMMIT = 1 << 5 CAN_ADMIN = 1 << 6 PERMISSION_TABLE = { |