Skip to content

Instantly share code, notes, and snippets.

@hmans
Created May 1, 2012 00:59
Show Gist options
  • Save hmans/2564075 to your computer and use it in GitHub Desktop.
Save hmans/2564075 to your computer and use it in GitHub Desktop.
Work in progress...
require 'freddie'
class Event
include Mongoid::Document
# ...
end
class App < Freddie::App
resource :events do
permit do |user|
can :read
can :create if user.admin?
can :update, :destroy, :user_id => user.id
end
end
root :events
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment