In my application all users can read there own tasks. A second controller is only available for moderators and moderators can see all tasks.
# accessible for every user
# every user should see only own tasks,
# but at the moment all moderators see all tasks
class TasksController < ActionController::Base
load_and_authorize_resource
end
# only accessible for moderators, all tasks
class TasksModeratorController < ActionController::Base
load_and_authorize_resource :task, :parent => false
end
# Ability
# Moderators can read all tasks
if user.moderator?
can :read, Task
end
# All users can read there own tasks
can :read, Task, :user_id => user.id
How can i limit the tasks in TasksController to show only own tasks also to moderators but all tasks in TasksModeratorController? Or is there a more common way to handle this?