Update the ABP CLI:
dotnet tool update -g Volo.Abp.Cli
Update the ABP Suite:
abp suite update
11 Answer(s)
- 
    0If you get an error while managing user permissions in angular identity management, please refer to the temporary solution below. - Create an entity-action-contributors.tsfile in your project and add the code below in it.
 import { EntityAction, EntityActionList } from '@volo/abp.commercial.ng.ui'; import { eIdentityComponents, Identity, UsersComponent } from '@volo/abp.ng.identity'; import { IdentityEntityActionContributors } from '@volo/abp.ng.identity.config'; const permissionsModal = new EntityAction<Identity.UserItem>({ text: 'AbpIdentity::Permissions', action: data => { const component = data.getInjected(UsersComponent); component.openPermissionsModal(data.record.id); }, permission: 'AbpIdentity.Users.ManagePermissions', }); export function permissionsModalContributor(actionList: EntityActionList<Identity.UserItem>) { const index = actionList.indexOf( 'AbpIdentity::Permissions', (action, text) => action.text === text, ); actionList.dropByIndex(index); actionList.addByIndex(permissionsModal, index); } export const identityEntityActionContributors: IdentityEntityActionContributors = { [eIdentityComponents.Users]: [permissionsModalContributor], };- Import identityEntityActionContributorsin your root module (usuallyAppModule) and use it like below:
 import { IdentityConfigModule } from '@volo/abp.ng.identity.config'; import { identityEntityActionContributors } from './entity-action-contributors'; @NgModule({ imports: [ // Other imports IdentityConfigModule.forRoot({ entityActionContributors: identityEntityActionContributors, }), // Other imports ], providers: [], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {}
- Create an 
- 
    0I am using abp cli and abp suite version 2.6.2.0. As you can see in the domain project below, I followed Alper's instructions Volo.Abp.Commercial.SuiteTemplate.dll from #48. However, I am still receiving this error. <i>NOTE:</i> I did not receive any errors when restoring NuGet packages. Module - (Created with abp cli 2.6.2 while logged in) abp new Eagle.Aery.Core -t module-pro
- 
    0Sorry Sean, but Suite is not compatible with the modules right now. But it's on the road map. It'll be ready I guess in 3 weeks. 
- 
    0
- 
    0Hi @ sean.alford . Please Re-install ABP suite . 
- 
    0did reinstalling fix the issue? 
- 
    0@Alper, sorry for the delay. I'm just getting started this morning. I'm getting ready to try it now. 
- 
    0
- 
    0
- 
    0@Alper, it is working now. I don't know why... I starting diggin into the suite logs to find more info for you and it just started working. 
- 
    0hi Sean, good to know it works! happy coding! 











 
                                