Skip to content

Instantly share code, notes, and snippets.

@ritikesh
Last active November 27, 2018 18:01
Show Gist options
  • Save ritikesh/5ce55c89300c9ce0a8f310463d5ed369 to your computer and use it in GitHub Desktop.
Save ritikesh/5ce55c89300c9ce0a8f310463d5ed369 to your computer and use it in GitHub Desktop.
Model Concern for a multi-tenant rails app
module BelongsToTenant
extend ActiveSupport::Concern
included do
belongs_to :tenant
default_scope {
Tenant.current ? where(tenant_id: Tenant.current.id) : where(nil)
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment