socialforge/config/initializers/subdomain.rb

9 lines
168 B
Ruby
Raw Normal View History

2016-01-14 20:37:56 +08:00
class Subdomain
def matches?(request)
o = Organization.where(domain: request.subdomain).first
request.path_parameters[:id] = o.id if o
!o.nil?
end
end