CORE_OPTIONS token provided in CoreModule.forRoot().
So you must import
CoreModule.forRoot(), ThemeSharedModule.forRoot(),
in your module. othervise ABp spesific codes does not work.
I couldn't produce. I have created app with the command
abp new Support5663 -t app-pro -u angular -m none --database-provider ef -dbms SQLite -csf --version 7.3.2
yarn yarn start
and there is no error that I've got.
my node env is 18.x what is your node env? Could you try remove yarn.lock, package-log ,node_modules and .angular and re instal with yarn
. ?
Hi mahmut.gundogdu! When you finished the document, Please sent this for me.
Here the article and example. https://github.com/mahmut-gundogdu/ABP-Domain-based-Tenant-Example/blob/main/article/index.md
visible is a function not a value. the code must be
before
<ng-container *ngIf="row['_' + prop.name]?.visible">
after
<ng-container *ngIf="row['' + prop.name]?.visible && row['' + prop.name].visible()">
like that
Thanks for your advice.
But the problem still exists.
But I need to more information about the issue. Could you share your steps for producing the issue ? If I re-create the issue, I can fix that.
I couldn't share the article yet but I have finished. I have added shoots and even source codes. for a now you can read the link
https://docs.google.com/document/d/1VWUaGTJmT8Fc9uLlT8ohlfaB1hgKPYvzz-WURp65i90/edit?usp=sharing
I think your tenant resolver code is missing. Because I forgot the add these code in configure section. I can login the host but I couldn't login tenant. I would check the section.
Configure<AbpTenantResolveOptions>(options => { options.AddDomainTenantResolver("{0}.multitenancydemo.local"); });
Here a video for working solution . https://www.veed.io/view/0676526b-08cb-41cd-964c-a3b7b7f44f16?panel=share
I appreciate it
Sure. now, I am writing step by step a article. When I finished, I will sent here.
I have created an app with angular and openiddict in 7.3.2 version in my local. I defined local dns in my host file for testing. 127.0.0.1 mahmut.local 127.0.0.1 odin.mahmut.local
I created a tenant that name is odin. It works on my local. I think there is a step I skipped before. So I am updating documentation and I will crate an article too.
Hi mahmut.gundogdu! Can you help me for this?
Hi I am trying to produce.I have produced. In my senario, the backend did not resolve the tenant. So I am looking the issue. I will send the solution.