end
def local_domain?(domain)
- domain.nil? || domain.gsub(/[\/]/, '') == Rails.configuration.x.local_domain
+ domain.nil? || domain.gsub(/[\/]/, '').downcase == Rails.configuration.x.local_domain.downcase
end
def uri_for(target)
end
def self.find_remote!(username, domain)
- where(arel_table[:username].matches(username)).where(domain: domain).take!
+ where(arel_table[:username].matches(username)).where(domain.nil? ? { domain: nil } : arel_table[:domain].matches(domain)).take!
end
def self.find_local(username)