From ccd227a8ba8fdc6027662e6b5672fbb664b6e935 Mon Sep 17 00:00:00 2001 From: benji Date: Mon, 23 Jan 2017 17:45:57 +0100 Subject: [PATCH] Clients should be able to ask users balance --- app/models/client_ability.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/client_ability.rb b/app/models/client_ability.rb index 6e1fc77..30630d3 100644 --- a/app/models/client_ability.rb +++ b/app/models/client_ability.rb @@ -6,5 +6,6 @@ class ClientAbility can :create, Transaction if client.has_role? :create_transactions can :create, Request + can :read, User end end