PHCNetworks/multi-tenancy-devise

View on GitHub
lib/mtdevise/scoped_to.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Mtdevise
  module ScopedTo

    def scoped_to(account)
      where(:account_id => account.id)
    end

  end
end