Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "ryancyq"

Hi, thanks for letting us know.

i have created an issue on this at https://github.com/aspnetzero/documents/issues/136

meanwhile, for mpa you can refer to .Web.Mvc/wwwroot/view-resources/Areas/AppAreaName/Views/Users/Index.js

i assume that the MPA you are referring to is Asp Net Core + jQuery

Hi, @davidharrison the equivalent code for jquery project should be at https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Mvc/Areas/AppAreaName/Views/Shared/Components/AppAreaNameMenu/AppAreaNameMenuViewComponent.cs

can you check if _userNavigationManager.GetMenuAsync(menuName) return the menu item associated with the feature?

Hi, you will need to implement it on the client side as well.

See https://github.com/aspnetzero/aspnet-zero-core/issues/1632#issuecomment-428900148

Was it upgraded from an older version recently?

or it is a fresh download of 6.2.0 from AspNetZero website?

Hi, ANZ currently only provide Db Binary Object for file management.

You can implement it via asp net core file provider.

see https://docs.microsoft.com/en-us/aspnet/core/fundamentals/file-providers

Hi, the example in the documentation describe how use EntityCache base on the default implementation in the framework.

If you want to know more about the implementation, you can always look for the open source repo at https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp/Domain/Entities/Caching/EntityCache.cs

Hi, we have not implemented the Authenticate method to include shouldResetPassword in its response for WebApi project.

see https://github.com/aspnetzero/aspnet-zero/blob/12aa34c15797a886ee68492b77380ee5e9fbdd8c/src/MyCompanyName.AbpZeroTemplate.WebApi/WebApi/Controllers/AccountController.cs#L38-L53

Answer

have you added the xml as embedded resource?

in your MyProject.Core.Extended.csproj

<ItemGroup>
    <EmbeddedResource Include="Localization\MyProject\*.xml" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" />
</ItemGroup>

also, you should add module dependency on your MyProjectCoreExtendedModule

[DependsOn(typeof(MyProjectCoreModule))]
public class MyProjectCoreExtendedModule : AbpModule
{
}
   

Hi, is there any errors in the browser console? it will be good if you can share the screenshots as well.

Answer

Hi, currently there isn't such logic exists in ANZ.

You can try creating SuperUser as static role with a predefined name (not displayName). Then, when upating a role, check for current logged in user's permission the role to modify with the static role SuperUser

If you face any issues, you can post it here and we will try to help.

Showing 231 to 240 of 573 entries