hi
You can reference the DocumentServiceModule.HttpApi.Client
in InvoiceService
host project.
Then reference the InvoiceService.HttpApi.Client
in DocumentServiceModule
host project.
Do you have xxx.HttpApi.Client
project in all of your modules?
hi
Is there any way I can check if Twilio is not enabled, and doesn't show a phone verification option?
You can inject the ISmsSender
and check the instance if a TwilioSmsSender
.
You can set IdentitySettingNames.SignIn.EnablePhoneNumberConfirmation
to false
for specific tenants.
Setting under Identity setting area.
hi
abp application is an ASPNET Core application.
So the best practice of ASPNET Core is the same approach in the abp framework.
If you have any problems, you can provide feedback here.
Thanks.
hi
We will add docker support in the app template soon.
Thanks.
ok, Please share full Logs.txt file.
hi
You need to change the log level of your website(https://pcassist-testing.premiumasp.net/).
Postman is just used to send HTTP requests (API/app/book
).
We need the logs.txt
of your website.
hi
Try to set Layout
to null
of your partial view.
@{
Layout = null;
PageLayout.Content.Title = L["Wizard Steps"].Value;
PageLayout.Content.MenuItemName = HorizonERPMenus.MainWizard;
}
hi
api/app/book
in your Postman with your access token..MinimumLevel.Debug()
loggerConfiguration
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.WriteTo.Async(c => c.AbpStudio(services));