I have a Domain model for creating the tenant.
class Domain < ApplicationRecord
after_create :create_tenant
def create_tenant
Apartment::Tenant.create(name)
end
end
After creating the tenant "example" i want to redirect my browser automatically to http://example.lvh.me:3000
Can someone help me with this?
The answer was easy than I thought . Simply redirect to the url with your subdomain name after successful tenant creation. The modifying the create definition in domain controller
Added this line