Skip to content

Instantly share code, notes, and snippets.

@pacifists
Created November 13, 2011 10:01
Show Gist options
  • Save pacifists/1361932 to your computer and use it in GitHub Desktop.
Save pacifists/1361932 to your computer and use it in GitHub Desktop.
How to extend locomotive cms permissions onto custom models and controllers
# app/models/ability.rb
class Ability
def setup_author_permissions_with_myliufoto!
self.setup_author_permissions_without_myliufoto!
can :manage, [Album, Photo]
end
alias_method_chain :setup_author_permissions!, :myliufoto
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment