Activities of "alper"

@Jurjen we'll send you the patch version (from DEV branch). I'll contact you via email

Answer

About enum automatically obtain value problem When defining enum, the value can be obtained at compile time, but the entity.json generated by abp suite is null It is recommended to add this feature

hi this is not possible because these enums are being used also in Angular clients so there's no compile time there. And I see that your enum syntax doesn't seem to be formal written.

Answer

Hi, In the below screen "Available" and "Assign" captions are mismatched. Screens : Identity Resources, API Resources (Administration->IdentityServer->Clients->Actions->Edit->Resources->Api Resources)

@ademaygun you are right. will be corrected in v4.3

Answer

This usually happens when a dotnet tool is not completely uninstalled or being used under some other Windows user accounts. Clean install will solve the problem. To do this uninstall Suite manually:

  1. Restart your computer to ensure that no process locks the Suite application (optional step)
  2. Delete this folder => "%UserProfile%\.dotnet\tools\.store\volo.abp.suite"
  3. Delete this file => "%UserProfile%\.dotnet\tools\abp-suite.exe"
  4. Check that there's no volo.abp.suite package in the list dotnet tool list -g
  5. Install Suite abp suite install

1- Menu items are configured in your MenuContributor class. See the following example that adds a menu grup and child items under it.

                var administrationMenu = context.Menu.GetAdministration();             

                var identityMenuItem = new ApplicationMenuItem(IdentityMenuNames.GroupName, l["Menu:IdentityManagement"], icon: "fa fa-id-card-o");
                administrationMenu.AddItem(identityMenuItem); // *** adds a parent menu group ***
				identityMenuItem.AddItem(new ApplicationMenuItem(IdentityMenuNames.Roles, l["Roles"], url: "~/Identity/Roles")); //*** adds a child menu item ***
            

See https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Web/Navigation/AbpIdentityWebMainMenuContributor.cs#L33

2- What you want is generating CRUD pages from database table. It's not supported at the moment. But it's on the roadmap. So you need to manually create the entity from Suite UI.

3- Renaming table is related to EF Core migrations. You can make it in OnModelCreating. (EF Core fluent migration)

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
      modelBuilder.Entity<MyEntity>().ToTable("MyNewTableName");
}

see this post https://support.abp.io/QA/Questions/226/How-to-configure-email-settings

Smtp password must be encrypted. It seems like you have not encrypted it correctly. see https://docs.abp.io/en/abp/latest/Emailing#encrypt-the-smtp-password

ps: I removed your sensitive SMTP sensitive data.

you can use abp.ajax for ajax calls. https://docs.abp.io/en/abp/latest/UI/AspNetCore/JavaScript-API/Ajax#basic-usage

on the other hand if you are getting error from your 3rd party API, you should add your client to that server's granted clients.

Answer

Spelling mistake in the template:

@l.lemmens yeap you're right. we'll fix the name. thanks

Answer

@sgal, do you have this directory?

C:\Users\sgalcheung\Documents\StudyABP\AbpSuite\AngularSeparateTutorial\Acme.BookStorePro\angular\.suite\schematics

also when this happens? generating a CRUD page? and your version pls?

Showing 1101 to 1110 of 1975 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56