Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. module Abilities
  2. class MyModel < Base
  3. def initialize(user)
  4. super(user)
  5. return unless user.present?
  6. can :manage, ::MyModel, my_other_model: { user_id: user.id }
  7. end
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement