2010-09-02 21:39:56 +04:00
|
|
|
class ProjectEnumerationsController < ApplicationController
|
2010-09-10 20:00:49 +04:00
|
|
|
before_filter :find_project_by_project_id
|
2010-09-02 21:39:56 +04:00
|
|
|
before_filter :authorize
|
|
|
|
|
2010-09-10 20:00:49 +04:00
|
|
|
def update
|
|
|
|
if request.put? && params[:enumerations]
|
2010-09-02 21:39:56 +04:00
|
|
|
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
|
|
|
|
|
|
|
|
redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
|
|
|
|
end
|
|
|
|
|
2010-09-03 19:04:03 +04:00
|
|
|
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
|
|
|
|
|
2010-09-02 21:39:56 +04:00
|
|
|
end
|