##// END OF EJS Templates
set default category_id instead of the object (#11665)...
set default category_id instead of the object (#11665) Rails 2.3 still has issues with synchronizing the association_id and association attributes of an object. That means, if you set the association with an object first and then just set the id afterwards, the object wins and the setting of the id gets lost. This is not an issue in Rails >= 3.1 anymore. Contributed by Holger Just. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@10226 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6774:751c0b0813e1
r10043:14dcefaa97f9
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