]> source.dussan.org Git - redmine.git/commit
Add support for multiple email addresses per user (#4244).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 17 Jan 2015 14:14:12 +0000 (14:14 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 17 Jan 2015 14:14:12 +0000 (14:14 +0000)
commite3618bdbecd9b5d86eb6d2c8c256ba3fcdf05189
tree3b54c10eecece6cc2674491a76a4e5e932d82d1e
parent7f29c2fd88f271ac59f1c10b90942fec57b35ae2
Add support for multiple email addresses per user (#4244).

git-svn-id: http://svn.redmine.org/redmine/trunk@13886 e93f8b46-1217-0410-a6f0-8f06a7374b81
65 files changed:
app/controllers/email_addresses_controller.rb [new file with mode: 0644]
app/controllers/users_controller.rb
app/helpers/email_addresses_helper.rb [new file with mode: 0644]
app/helpers/users_helper.rb
app/models/document.rb
app/models/email_address.rb [new file with mode: 0644]
app/models/mail_handler.rb
app/models/mailer.rb
app/models/message.rb
app/models/news.rb
app/models/principal.rb
app/models/user.rb
app/models/wiki_content.rb
app/views/email_addresses/_index.html.erb [new file with mode: 0644]
app/views/email_addresses/index.html.erb [new file with mode: 0644]
app/views/email_addresses/index.js.erb [new file with mode: 0644]
app/views/my/account.html.erb
app/views/settings/_authentication.html.erb
app/views/users/edit.html.erb
config/initializers/10-patches.rb
config/locales/en.yml
config/locales/fr.yml
config/routes.rb
config/settings.yml
db/migrate/20150113194759_create_email_addresses.rb [new file with mode: 0644]
db/migrate/20150113211532_populate_email_addresses.rb [new file with mode: 0644]
db/migrate/20150113213922_remove_users_mail.rb [new file with mode: 0644]
db/migrate/20150113213955_add_email_addresses_user_id_index.rb [new file with mode: 0644]
public/images/email.png [new file with mode: 0644]
public/images/email_add.png [new file with mode: 0644]
public/images/email_disabled.png [new file with mode: 0644]
public/javascripts/application.js
public/stylesheets/application.css
test/fixtures/email_addresses.yml [new file with mode: 0644]
test/fixtures/users.yml
test/functional/admin_controller_test.rb
test/functional/documents_controller_test.rb
test/functional/email_addresses_controller_test.rb [new file with mode: 0644]
test/functional/issues_controller_test.rb
test/functional/issues_custom_fields_visibility_test.rb
test/functional/mail_handler_controller_test.rb
test/functional/messages_controller_test.rb
test/functional/my_controller_test.rb
test/functional/news_controller_test.rb
test/functional/projects_controller_test.rb
test/functional/repositories_bazaar_controller_test.rb
test/functional/repositories_controller_test.rb
test/functional/repositories_cvs_controller_test.rb
test/functional/repositories_darcs_controller_test.rb
test/functional/repositories_filesystem_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/users_controller_test.rb
test/functional/wiki_controller_test.rb
test/integration/account_test.rb
test/integration/api_test/users_test.rb
test/integration/issues_test.rb
test/integration/users_test.rb
test/unit/document_test.rb
test/unit/issue_test.rb
test/unit/mail_handler_test.rb
test/unit/mailer_test.rb
test/unit/user_test.rb
test/unit/watcher_test.rb