Skip to content

Instantly share code, notes, and snippets.

@brianhempel
Created December 17, 2010 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianhempel/745746 to your computer and use it in GitHub Desktop.
Save brianhempel/745746 to your computer and use it in GitHub Desktop.
class Person
include MongoMapper::Document
end
class Registree < Person
key :in_wels, Boolean
key :in_vienna, Boolean
end
class Visitor < Registree
# QUERY = { "$or" => [{:in_wels => true}, {:in_vienna => true}] }
def self.query(options={})
super.tap do |query|
query["$or"] = [{:in_wels => true}, {:in_vienna => true}]
end
end
def self.name
"Registree"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment