Devise - Check for Subdomain on Account Table

Hi there,

I"m building a multitenant app using apartment and devise, using postgresql schemas and subdomain auth.

I just added subdomain , following this: https://github.com/plataformatec/devise/wiki/How-to:-Scope-login-to-subdomain

Everything is working, but this model requires that I have a subdomain attribute on user model:

class User < ActiveRecord::Base devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, request_keys: [:subdomain]

def self.find_for_authentication(warden_conditions) where(:email => warden_conditions[:email], :subdomain => warden_conditions[:subdomain]).first end end

``

I would like to validate subdomain from an account model, which is related to my user model. (User has many accounts. Account has a subdomain attribute).

How can I achieve this?

Thanks in advance, Leandro

I forgot to add that both account and user models are on public schema, outside of tenants.