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?