OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/controllers/costs_controller.rb

11 lines
379 B

class CostsController < ApplicationController
unloadable
before_filter :find_deliverable, :only => [:show, :edit]
before_filter :find_deliverables, :only => [:bulk_edit, :detroy]
before_filter :find_project, :only => [:new, :update_form, :preview]
before_filter :authorize
verify :method => :post, :only => :destroy, :redirect_to => { :action => :details }
end