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/cost_reports_controller.rb

16 lines
236 B

class CostReportsController < ApplicationController
unloadable
before_filter :get_query
def index
end
private
def get_query
# tries to find a active query in the session or loads the default one
end
end