Hi
I am faing one issue while removing any table from abp suite it's deleting only table.json file not removing the services, interface etc. so could you please let me know why this is happening.
Hi
I want to pass selected row id into another page on view buton click. on this button click I am redirecting it to another page so want that id here. Could you please suggest me how can I get this.
Thanks,
Hi,
I am using abp framework 4.4.3 with blazor. I want to make name as required field in user form section. Can you please suggest me for the same.
https://prnt.sc/1zs3z1a Please see this screenshot for the same.
Thanks,
Please suggest me solution for this and if possible we can connect on zoom as well.
Thanks,
Can you please provide me solution for this.
Thanks,
Hi,
I have updated my project version to 4.4.3. Earlier it's version was 4.3 but now I am getting errors like failed to fetch. I have updated my abp and blazor version also run abp bundle command too to update global files so it's updated.
Please see the below errors : https://prnt.sc/1x3bhvu
KIndly please provide me solution for this.
Thanks,
Hi,
I want to show all menu's in left side while open the security log page. Please let me know how we can do this.
Thanks,
Hi
In my old project azure login was working but I have upgraded all the packages from abp suite and all things are working fine. Now azure login is not working it's redirecting back to login page after azure login.
To check this issue I have created a sample project from abp suite and just added the azure settings into host appsettings.json file and added below code in hostmodule.cs class.
private static void ConfigureAzureLogin(ServiceConfigurationContext context, IConfiguration configuration)
{
context.Services.AddAuthentication().AddOpenIdConnect("AzureOpenId", "Azure", options =>
{
options.Authority = "https://login.microsoftonline.com/" + configuration["AzureAd:TenantId"] + "/v2.0/";
options.ClientId = configuration["AzureAd:ClientId"];
options.ResponseType = OpenIdConnectResponseType.CodeIdToken;
options.CallbackPath = configuration["AzureAd:CallbackPath"];
options.ClientSecret = configuration["AzureAd:ClientSecret"];
options.RequireHttpsMetadata = false;
options.SaveTokens = true;
options.GetClaimsFromUserInfoEndpoint = true;
options.Scope.Add("email");
//options.Events.OnTokenValidated = (async context =>
//{
// var debugIdentityPrincipal = context.Principal.Identity;
// var claimsFromOidcProvider = context.Principal.Claims.ToList();
//});
});
}
Now login button is coming, azure login screen is coming but after entring the credential it's redirecting to login page again. Not able to understand the reason because same code is working in ABP 4.1.1 version but it's not working in ABP 4.2.2. Please suggest me some solution for the same it's quite urgent.
Reference Link : https://community.abp.io/articles/how-to-setup-azure-active-directory-and-integrate-abp-angular-application-lyk87w5l
Thanks,
Hi
I am facing one issue and not able to understand the reason behind it. After reset password it's showing success message but If I click on Go to application button then it's going to swagger link but it should open my blazor link so can you please help me.
Thanks,
Hi
I am using abp io with blazor and have many api's. Now I want to proovide 5 api access to users and don't want them to create access token for this.
So in administration section there is some section which is related to api resources and scopes. Is there any way to provide token directly? I want to give them access token and few api's access.
Please let me know how we can acheive this.
Thanks,