added unloadable to controllers again, to fix development issues

git-svn-id: https://dev.finn.de/svn/cockpit/trunk@157 7926756e-e54e-46e6-9721-ed318f58905e
pull/6827/head
rkh 15 years ago
parent 79cdba76ae
commit 806fa330dd
  1. 2
      app/controllers/cost_objects_controller.rb
  2. 2
      app/controllers/cost_types_controller.rb
  3. 2
      app/controllers/costlog_controller.rb
  4. 2
      app/controllers/hourly_rates_controller.rb

@ -1,4 +1,6 @@
class CostObjectsController < ApplicationController
unloadable
before_filter :find_cost_object, :only => [:show, :edit]
before_filter :find_cost_objects, :only => [:bulk_edit, :destroy]
before_filter :find_project, :only => [

@ -1,4 +1,6 @@
class CostTypesController < ApplicationController
unloadable
# Allow only admins here
before_filter :require_admin
before_filter :find_cost_type, :only => [:set_rate, :toggle_delete]

@ -1,4 +1,6 @@
class CostlogController < ApplicationController
unloadable
menu_item :issues
before_filter :find_project, :authorize, :only => [:edit, :destroy]
before_filter :find_optional_project, :only => [:report, :details]

@ -1,4 +1,6 @@
class HourlyRatesController < ApplicationController
unloadable
helper :users
helper :sort
include SortHelper

Loading…
Cancel
Save