Hi,
I've followed the documentation to test your issue and managed to install Chat module successfully. So, it seems like you have a missing configuration or dependency.
Most probably, your {ProjectName}.HttpApi.Host project doesn't reference Volo.Chat.SignalR
package and therefore it is not depend on ChatSignalRModule
module. If it does both of these, make sure that you've not skipped SignalR Access Token Configuration for Angular Projects part which should be done in {ProjectName}.HttpApi.Host project as well.
Can you share the AppUser entity? And also the code piece which you add it to ModelBuilder in *DbContextModelCreatingExtensions.cs?
Normally, using ConfigureByConvention should fix this.
Example:
builder.Entity<IdentityUser>(b =>
{
b.ToTable(options.TablePrefix + "AppUsers", options.Schema);
.
.
.
b.ConfigureByConvention();
.
.
.
}
@Repunjay Can you delete "resolutions" object in your package.json, then delete yarn.lock file and try again?
@arifharsono
We have to explain how to add Chat module to a solution. We'll publish a sample application or documentation for that.
Hi @arifharsono,
It seems like SignalR is not running on localhost:44319 web site. Is Volo.Chat.SignalR module added to the server project?
I need to know your solution's type. Is identity server separated? Also, which steps did you follow to add chat module to your solution?
@saintpoida
You are right. Those fields must be in UI and they will be there next release.
Hi @vishalnikam,
There was an issue but it is resolved now. Can you please delete the "Volo.LeptonTheme" cache files in "%USERPROFILE%/.abp/templates" folder and download again? Then you can get angular source code of lepton theme.
Update Volo.Abp.Commercial.SuiteTemplates to 2.6.0.
Note: Please do not update abp suite unless you update your solution. Abp suite may not be compatible with your old version.
Hi,
Currently this is not supported. But it is in our short-term plans (planned for 2.7.0).
What is the version of "Volo.Abp.Commercial.SuiteTemplates" package in your solution? If it is below 2.5.0, please update it.