Create new tenant not creating admin user
- ABP Framework version: v4.3.0 (Upgraded from 4.2.1)
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace: No error is thrown.
- Steps to reproduce the issue:
- Goto SaaS-->Tenants-->New Tenant
- Create a new tenant with the admin user and pass entered.
- Save
It looks like the tenant is created but the admin user is not added.
In the database the tenant is added but there is no user.
Potentially a problem in ObjectExtensions or TenantAppService?Chris
I have the same problem here, ABP Framework version:* v4.3.0 from new Template.
at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func
3 proceed)
at Volo.Saas.Tenants.TenantStore.GetCacheItemAsync(Nullable`1 id, String name)
at Volo.Saas.Tenants.TenantStore.FindAsync(Guid id) <<<---- Error
Its done, thankyou @armanozak
Any Answer ?, please urgently ..
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
@alper, @gterdem
Thank you for the feedback,
This is my integration scenario, please to consider.
https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/blob/master/2-WebApp-graph-user/2-3-Multi-Tenant/README.md
I need to login using Azure AD Credential https://docs.abp.io/en/abp/latest/How-To/Azure-Active-Directory-Authentication-MVC
Step :
-------- login test Web Api project------ 2. /Account/Login (Web Api Project)
After login using Azure AD Credential, Q. (what's wrong with configuration for this result ?)
If i uncommented options.ResponseType or options.SignInChema, got error. updated : https://docs.abp.io/en/abp/latest/How-To/Azure-Active-Directory-Authentication-MVC
//MVC integration Solved------
----- angular Q. how to configure and handle Azure AD authentication in angular project ??