diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-16 11:40:22 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-16 11:40:22 +0100 |
commit | ad33f4bbbdf204507e31b7d9ab2ed24b5f7bdcdd (patch) | |
tree | d004c2b6f4f1dfd9dcc5db465aa9f9e9ac98efd0 /app | |
parent | 4194d7f689c3f70c9247e8006694cfcf667ebaf0 (diff) | |
parent | 962e07e58451f5d21cab9804191139be0f20189b (diff) |
Merge branch 'ability_fix' into develop
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/users_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 454c26b..7af8e68 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -10,7 +10,7 @@ class UsersController < ApplicationController end def show - @phone_books = PhoneBook.accessible_by( Ability.new( @user ) ).all + @phone_books = PhoneBook.accessible_by( Ability.new( @user ), :read ) end def new |