summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-06-27 11:29:09 +0200
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-06-27 11:29:09 +0200
commitb9eb27eedd2fc1fc0b8edd7d09a895745f259312 (patch)
tree79af2bd0063fb3343c4d841ee17b41acc72120dd /app/controllers
parentfa118e11df2913d1fcf6334b2dc3144a3b324204 (diff)
Add cancan check for switchboards.
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/api/v1/switchboards_controller.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/controllers/api/v1/switchboards_controller.rb b/app/controllers/api/v1/switchboards_controller.rb
index e6996ca..4d6607a 100644
--- a/app/controllers/api/v1/switchboards_controller.rb
+++ b/app/controllers/api/v1/switchboards_controller.rb
@@ -5,16 +5,20 @@ module Api
def index
@user = current_user
- @switchboards = @user.switchboards
+ @switchboards = Switchboard.all
- respond_with @switchboards
+ if can? :read, @switchboards
+ respond_with @switchboards
+ end
end
def show
@user = current_user
- @switchboard = @user.switchboards.find(params[:id])
+ @switchboard = Switchboard.find(params[:id])
- respond_with @switchboard
+ if can? :read, @switchboard
+ respond_with @switchboard
+ end
end
end
end