Hi @ismcagdas
As you said, I removed the authorization restriction, thank you.
Now I'm trying to add some languages by default for new tenant registration. (Turkish, English etc.)
But I was not successful, I would like your help in this matter too.
Best regards..
Hi everyone,
I want to add custom language add and delete feature for multi tenant. Can you help me how to do this?
Thanks.
Hi everyone, I am trying to login multitenant using subdomain. But when it tries to login (https://ExampleTenancyName.localhost:44301), it gives an "Invalid user name or password" error. I think tenant id value is not gone.
The changes I made to the code are as follows:
Demo.Web.Host / appsettings.json:
"App": { "ServerRootAddress": "https://{TENANCY_NAME}.localhost:44301/", "ClientRootAddress": "http://{TENANCY_NAME}.localhost:4200/", "CorsOrigins": "http://*.mycompany.com,http://*.localhost:4200,http://localhost:9876", "SwaggerEndPoint": "/swagger/v1/swagger.json", "AllowAnonymousSignalRConnection": "true" },
Angular / appconfig.json:
"remoteServiceBaseUrl": "https://localhost:44301", "appBaseUrl": "http://{TENANCY_NAME}.localhost:4200",
Angular / angular.json:
"serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { "browserTarget": "abp-zero-template:build", "disableHostCheck": true },