diff --git a/app/controllers/stories_controller.rb b/app/controllers/stories_controller.rb index 0e6095b..a54eec1 100644 --- a/app/controllers/stories_controller.rb +++ b/app/controllers/stories_controller.rb @@ -2,7 +2,7 @@ class StoriesController < ApplicationController hobo_model_controller - auto_actions :all + auto_actions :all, :except => :index auto_actions_for :project, [:new, :create] diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 578fc23..7423c3b 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -2,7 +2,7 @@ class TasksController < ApplicationController hobo_model_controller - auto_actions :all, :except => :index + auto_actions :write_only, :edit auto_actions_for :story, :create