OSDN Git Service

Allows multiple roles on the same project (#706). Prerequisite for user groups feature.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 May 2009 10:54:31 +0000 (10:54 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 May 2009 10:54:31 +0000 (10:54 +0000)
commit7dccf9fda6f30d8f4b0c5eaad9f6e2a1e67cd643
treeba6a18abff6ca69af528b3d295263d049a22266f
parent814e138c2a1105f8d9d10c4362a889dd71aff32d
Allows multiple roles on the same project (#706). Prerequisite for user groups feature.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2726 e93f8b46-1217-0410-a6f0-8f06a7374b81
65 files changed:
app/controllers/application.rb
app/controllers/issues_controller.rb
app/controllers/members_controller.rb
app/controllers/projects_controller.rb
app/controllers/queries_controller.rb
app/controllers/roles_controller.rb
app/controllers/users_controller.rb
app/helpers/application_helper.rb
app/models/issue.rb
app/models/issue_status.rb
app/models/member.rb
app/models/member_role.rb [new file with mode: 0644]
app/models/project.rb
app/models/role.rb
app/models/user.rb
app/views/account/show.rhtml
app/views/projects/settings/_members.rhtml
app/views/queries/_form.rhtml
app/views/users/_memberships.rhtml
app/views/workflows/edit.rhtml
db/migrate/20090503121501_create_member_roles.rb [new file with mode: 0644]
db/migrate/20090503121505_populate_member_roles.rb [new file with mode: 0644]
db/migrate/20090503121510_drop_members_role_id.rb [new file with mode: 0644]
public/stylesheets/application.css
test/fixtures/member_roles.yml [new file with mode: 0644]
test/fixtures/members.yml
test/functional/attachments_controller_test.rb
test/functional/boards_controller_test.rb
test/functional/documents_controller_test.rb
test/functional/issue_categories_controller_test.rb
test/functional/issue_relations_controller_test.rb
test/functional/issues_controller_test.rb
test/functional/journals_controller_test.rb
test/functional/mail_handler_controller_test.rb
test/functional/members_controller_test.rb
test/functional/messages_controller_test.rb
test/functional/news_controller_test.rb
test/functional/projects_controller_test.rb
test/functional/queries_controller_test.rb
test/functional/repositories_bazaar_controller_test.rb
test/functional/repositories_controller_test.rb
test/functional/repositories_darcs_controller_test.rb
test/functional/repositories_git_controller_test.rb
test/functional/repositories_mercurial_controller_test.rb
test/functional/repositories_subversion_controller_test.rb
test/functional/roles_controller_test.rb
test/functional/search_controller_test.rb
test/functional/timelog_controller_test.rb
test/functional/users_controller_test.rb
test/functional/versions_controller_test.rb
test/functional/watchers_controller_test.rb
test/functional/wiki_controller_test.rb
test/functional/wikis_controller_test.rb
test/unit/activity_test.rb
test/unit/changeset_test.rb
test/unit/issue_test.rb
test/unit/mail_handler_test.rb
test/unit/mailer_test.rb
test/unit/member_test.rb
test/unit/message_test.rb
test/unit/news_test.rb
test/unit/project_test.rb
test/unit/query_test.rb
test/unit/search_test.rb
test/unit/user_test.rb