diff options
author | Johan Sørensen <johan@johansorensen.com> | 2009-11-19 10:29:29 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2009-11-19 15:42:29 +0100 |
commit | ccf564bf471958a307085e0a21c4bf173b156080 (patch) | |
tree | 5afc670769cbc24f63fb3870ca9c287a740b80c8 /app/models/committership.rb | |
parent | dc7aade6fa82d946383b915c5b99ddead35975fe (diff) | |
download | gitorious-mainline-outdated-ccf564bf471958a307085e0a21c4bf173b156080.zip gitorious-mainline-outdated-ccf564bf471958a307085e0a21c4bf173b156080.tar.gz gitorious-mainline-outdated-ccf564bf471958a307085e0a21c4bf173b156080.tar.bz2 |
Use "Collaborator" instead of "Committer" when adding new committerships
The Committership class really needs a different name now that they
have more fine-grained permissions, but now just change the UI.
Diffstat (limited to 'app/models/committership.rb')
-rw-r--r-- | app/models/committership.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/committership.rb b/app/models/committership.rb index 66800e8..ade7265 100644 --- a/app/models/committership.rb +++ b/app/models/committership.rb @@ -95,7 +95,7 @@ class Committership < ActiveRecord::Base end def title - new_record? ? "New committer" : "Committer" + new_record? ? "New collaborator" : "Collaborator" end # returns all the users in this committership, eg if it's a group it'll |