##// END OF EJS Templates
Make sure that tests restore the attachments path to the tmp dir so that fixture files don't get deleted....
Make sure that tests restore the attachments path to the tmp dir so that fixture files don't get deleted. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8248 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6774:751c0b0813e1
r8128:ad25e3807d2d
Show More
project_enumerations_controller.rb
26 lines | 850 B | text/x-ruby | RubyLexer
/ app / controllers / project_enumerations_controller.rb
Eric Davis
Refactor: move method, ProjectsController#save_activities to ProjectEnumerationsController#save...
r3939 class ProjectEnumerationsController < ApplicationController
Eric Davis
Refactor: convert ProjectEnumerations to a resource on a project....
r3961 before_filter :find_project_by_project_id
Eric Davis
Refactor: move method, ProjectsController#save_activities to ProjectEnumerationsController#save...
r3939 before_filter :authorize
Toshi MARUYAMA
remove trailing white-spaces from app/controllers/project_enumerations_controller.rb....
r6774
Eric Davis
Refactor: convert ProjectEnumerations to a resource on a project....
r3961 def update
if request.put? && params[:enumerations]
Eric Davis
Refactor: move method, ProjectsController#save_activities to ProjectEnumerationsController#save...
r3939 Project.transaction do
params[:enumerations].each do |id, activity|
@project.update_or_create_time_entry_activity(id, activity)
end
end
flash[:notice] = l(:notice_successful_update)
end
Toshi MARUYAMA
remove trailing white-spaces from app/controllers/project_enumerations_controller.rb....
r6774
Eric Davis
Refactor: move method, ProjectsController#save_activities to ProjectEnumerationsController#save...
r3939 redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
end
Eric Davis
Refactor: move method, ProjectsController#reset_activities to ProjectEnumerationsController#destroy....
r3940 def destroy
@project.time_entry_activities.each do |time_entry_activity|
time_entry_activity.destroy(time_entry_activity.parent)
end
flash[:notice] = l(:notice_successful_update)
redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
end
Eric Davis
Refactor: move method, ProjectsController#save_activities to ProjectEnumerationsController#save...
r3939 end