From f423fa5d4639eec9563e753c77ad8c53b7be6237 Mon Sep 17 00:00:00 2001 From: maliming Date: Fri, 23 Apr 2021 09:17:04 +0800 Subject: [PATCH] Add example link to Multi-Tenancy https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver --- docs/en/Multi-Tenancy.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/Multi-Tenancy.md b/docs/en/Multi-Tenancy.md index 8cdda55af2..5db646b7a7 100644 --- a/docs/en/Multi-Tenancy.md +++ b/docs/en/Multi-Tenancy.md @@ -315,6 +315,8 @@ Configure(options => * Add this code to the `ConfigureServices` method of your [module](Module-Development-Basics.md). * This should be done in the *Web/API Layer* since the URL is a web related stuff. +> There is an [example](https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver) that uses the subdomain to determining the current tenant. + ##### Custom Tenant Resolvers You can add implement your custom tenant resolver and configure the `AbpTenantResolveOptions` in your module's `ConfigureServices` method as like below: @@ -407,4 +409,4 @@ The [Tenant Management module](Modules/Tenant-Management.md) provides a basic UI ## See Also -* [Features](Features.md) \ No newline at end of file +* [Features](Features.md)