From c61d273c5b62cdf24dfe6442f41d950a9b09aece Mon Sep 17 00:00:00 2001 From: bnymncoskuner Date: Tue, 25 Aug 2020 18:28:05 +0300 Subject: [PATCH] docs: update ApiConfig with rootNamespace --- docs/en/UI/Angular/Environment.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/en/UI/Angular/Environment.md b/docs/en/UI/Angular/Environment.md index 1119e7781a..86978cfa16 100644 --- a/docs/en/UI/Angular/Environment.md +++ b/docs/en/UI/Angular/Environment.md @@ -24,6 +24,7 @@ export interface Apis { export interface ApiConfig { [key: string]: string; + rootNamespace?: string; url: string; } ``` @@ -51,6 +52,8 @@ Take a look at following example When an api from `AbpIdentity` is called, the request will be sent to `"https://localhost:9090"`. Everything else will be sent to `"https://localhost:8080"` +* `rootNamespace` **(new)** : Root namespace of the related API. e.g. Acme.BookStore + ## Application ```typescript