EasyAbp / AbpHelper.CLI

Providing code generation and more features to help you develop applications and modules with the ABP framework.
MIT License
285 stars 95 forks source link

Permission names should be singular form. #66

Closed gdlcf88 closed 4 years ago

gdlcf88 commented 4 years ago

https://github.com/EasyAbp/AbpHelper.CLI/blob/daca9c6c3425c68a54e107c12cec450d417e886e/src/AbpHelper/Templates/Crud/Permissions_DefineNames.sbntxt

According to Volo.Blogging module, permission names should be singular form. For example: public const string Default = GroupName + ".Posts"; should change to: public const string Default = GroupName + ".Post";