Guest User

Untitled

a guest
Dec 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. authorization do
  2. # только свои афилы
  3. role :affiliate do
  4. has_permission_on :affiliates, :to => :all do
  5. if_attribute :contractor_id => is { user.id }
  6. end
  7. end
  8.  
  9. # можно редактировать и смотреть только зизу-лт сделки :)
  10. role :zizu_lt_deals_editor do
  11. has_permission_on :deals, :to => :all do
  12. if_attribute :site_id => is { 7 }
  13. end
  14. end
  15. end
Add Comment
Please, Sign In to add comment