hi
This will be fixed in 6.0
public virtual async Task DeleteAsync(Edition edition)
{
var tenants = await TenantRepository.GetListAsync(editionId: edition.Id);
if (tenants.Any())
{
throw new UnableDeleteEditionException(edition.DisplayName);
}
await EditionRepository.DeleteAsync(edition);
}
You can use the IAbpApplicationConfigurationAppService and get the ApplicationConfigurationDto
Permissions and other info will exist in the DTO,
hi
I realize you don't need to check permissions in WPF, The AppService will check permissions automatically.
Also no longer need the AbpAspNetCoreMvcClientModule
You only need to use the app services to call the method.
hi
Please clear the logs and reproduce the errors and share the logs to liming.ma@volosoft.com
Thanks
Are there a list of predefined clientproxies for me to have a CRUD for administration area like roles,users, audit logs
You just need to use the AppServices to CRUD.
Are there a list of predefined constant string variable for policy names? If so what are the right class or property I should call? Is there a list? (I know that you can get policy names from swagger abpappconfiguration)
No, They are existing in the XXX.Application.Constract modules.
IAuthorizationService is always returning false even if the current logged user is admin
Can you try to depends on the AbpAspNetCoreMvcClientModule?
hi
Can you check what's js code occurred this error?
hi
We will check this, You can download the source code of the module and add the project reference, and depends it manually.
hi
Maybe some requests were canceled. Such as requesting a page and then closing it. Maybe some ajax or http requests were canceled
You can ignore it and keep watching the logs.
hi
How to reproduce this probem in a brand new template project?
Please share some steps thanks