diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-26 17:07:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-26 17:07:43 +0000 |
commit | 449d5e6d34d24c77225fa6f2f70933eea4c11840 (patch) | |
tree | 066599a7308f1596c20de745988ee4af9565b6c1 /app/controllers | |
parent | 33bf6dddf3a78b1ab12bbac3f3828c407c9ccd44 (diff) | |
download | redmine-449d5e6d34d24c77225fa6f2f70933eea4c11840.tar.gz redmine-449d5e6d34d24c77225fa6f2f70933eea4c11840.zip |
Removes the Modules tab in project settings (#26488).
Modules can now be select on the first tab, just like when creating a project.
git-svn-id: http://svn.redmine.org/redmine/trunk@16892 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/projects_controller.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index 3e3fc69f3..7219e4494 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -204,12 +204,6 @@ class ProjectsController < ApplicationController end end - def modules - @project.enabled_module_names = params[:enabled_module_names] - flash[:notice] = l(:notice_successful_update) - redirect_to settings_project_path(@project, :tab => 'modules') - end - def archive unless @project.archive flash[:error] = l(:error_can_not_archive_project) |