Base solution for your next web application

Activities of "lschelvan"

I have a number of notifications in my app. I'd like to add a Category or Tag property to the NotificationDefinition so that I can organize them in the user notification settings UI.... something like this (where I have Category 1 and Category 2)...

Is there any way to do this with the current Abp Notifications? (And if not, can this be considered as a feature for a new version?) Thank you.

Running the MAUI app for the first time... I get this error when attempting to log in to a Tenant: (I can log into the Host successfully)... I'm not sure what it means, since the only "Tenants" permission is Pages_Tenants, but that's for the Host side only, and I shouldn't need it for Tenant login, right? This user has all available permissions, anyways.

We have AspNetZero Angular, v 12.4.0

Abp.Authorization.AbpAuthorizationException: Required permissions are not granted. At least one of these permissions must be granted: Tenants

I just downloaded the new 12.4.0 version. (Angular + .NET core)

Using VS2022 17.7.0 I get this when building Web.Host

There are also a couple of errors when building the MAUI project (I ignored them because we're not yet developing the mobile project).

If there's anybody who's successfully integrated DevExpress Reporting (23.1.5) with AspNetZero (11.3, .NET Core + Angular), I am very interested to know how you got it working....

I've followed this process : https://docs.aspnetzero.com/en/aspnet-core-angular/latest/DevExpress-Reporting-Implementation-Angular

But this throws an exception referencing WebDocumentViewerController, because DevExpress has recently made their controller classes abstract: https://supportcenter.devexpress.com/ticket/details/t1019255/reporting-for-asp-net-core-blazor-server-the-report-designer-web-document-viewer-and

Following their recommended procedure, I've added the explicit controller classes.

But doing this breaks my Web.Host app during Swagger generation:

An unhandled exception occurred while processing the request. SwaggerGeneratorException: Ambiguous HTTP method for action - MyApp.Web.Controllers.CustomQueryBuilderController.Invoke (MyApp.Web.Host). Actions require an explicit HttpMethod binding for Swagger/OpenAPI 3.0 Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable<ApiDescription> apiDescriptions, SchemaRepository schemaRepository)

Hi, we have an issue with GetSettingValueForUserAsync not returning an updated value. It appears to be returning a cached value.

We are using the below line to change/ set a new setting value:

await SettingManager.ChangeSettingForUserAsync(AbpSession.ToUserIdentifier(), AppSettings.WMS.InventoryStockViewSettings.InventoryLotGroupBy, ((bool)input.InventoryLotGroupBy).ToString());

Then we are using the below to get the updated value from DB:

userSettings.InventoryLotGroupBy = await SettingManager.GetSettingValueForUserAsync<bool>(AppSettings.WMS.InventoryStockViewSettings.InventoryLotGroupBy, AbpSession.ToUserIdentifier());

The API endpoint for getting Updated values is returning old values to the client side most of the time (the values have been updated as expected in DB). It works fine after I hard reload the page/Frontend.

Note: Everything works fine on local, the issue is occurring only on live (Azure app service).

Is the [RequiresFeature] attribute no longer supported? I am using version 11.4

If it's not supported, does anyone have some code for a custom attribute and checker? (If not, I can write my own).

Thanks.

When trying to regenerate an entity that has navigation properties:

Showing 1 to 7 of 7 entries