Last active
December 25, 2015 08:59
-
-
Save farnoy/6950927 to your computer and use it in GitHub Desktop.
Draft rails adapter for access granted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Roles::Moderator | |
applies_for -> user { user.moderator? } | |
definitions do | |
can :edit, Comment | |
can :destroy, Thread, locked: false | |
can :unlock, Thread, If(:locked_by_him) | |
end | |
def locked_by_him | |
@subject.locked_by == @user | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment