Activities of "smutairi"

Dear ABP team,

I am writing to request a feature: an SCIM module for ABP.

Many ABP developers are creating business applications, and ABP provides authentication for many standards. However, ABP does not currently support user provisioning.

Most business applications allow admins to view all users and assign them to roles. This is not possible if I use ABP with Azure AD (Microsoft Entra), for example.

I need ABP to have a SCIM endpoint to provision all users and keep them up-to-date (auto-add, update, and soft delete hourly).

SCIM is a standard endpoint that can be used for system integration for provisioning.

I hope you will consider this request seriously. Thank you for your time and consideration.

Sincerely, Buaziz : a Customer since ASPNET Zero :)

Reference Links: https://learn.microsoft.com/en-us/entra/identity/app-provisioning/on-premises-scim-provisioning https://medium.com/the-new-control-plane/using-microsofts-scim-sample-a6e7dddbca71 https://learning.postman.com/docs/administration/scim-provisioning/configuring-scim-with-azure-ad/

Link to similar Request

  • ABP Framework version: v6.0.1
  • UI type: Blazor
  • DB provider: EF Core

I am upgrading from V5.3 to V6.0.1 and at the same time am trying to remove IdentityServer dependency.

I am currently using a custom claim added as below (Domain Project)... how to accomblish the same with OpenIdDict module

Configure<AbpClaimsServiceOptions>(options => { options.RequestedClaims.Add("MY_CUSTOM_CLAIM"); });

  • ABP Framework version: v5.3.0.RC3
  • UI type: Blazor WASM
  • DB provider: EF Core

I am using Azure AD to authenticate and I pull a custom claim "Country"

I want to use that custom claim all over the application, and I also want it to be used for AUTO Filtering Data at the Repository Level.

what are the best options to enable this requirement using ABP functionality and core extensibility

Please make the Toolbar > LanguageSwitch in Lepton Theme auto hide if there is only one language

  • ABP Framework version: v4..3.0
  • UI type: Blazor
  • DB provider: EF Core
  • **Tiered (MVC) **: yes

I am managed to integrate Azure AD with ABP and Blazor UI.

What I want is to get more properties from Azure AD like "Groups" and "Managed By" and get access to them in ABP "CurrentUser" shared property.

How do I do this task?

  • ABP Framework version: v4.3.0 RC1
  • UI type: Blazor
  • DB provider: EF Core

I am trying to localize Validation Messages for POCO (DTO) classes on Blazor.

I have my own Resource added and is working fine on notifications and other strings. but I want to localize the <ValidationError> tags on Razor pages

Example DTO


public class StockTypeCreateDto
    {
     ----ADD IT HERE---
        [Required]
        [StringLength(StockTypeConsts.NameMaxLength)]
        public string Name { get; set; }
        [Required]
        public bool IsStatic { get; set; }
    }
}

Example Razor

                <Validation>
                        <Field>
                            <FieldLabel>@L["Label:Name"] *</FieldLabel>
                            <TextEdit Autofocus="true" @bind-Text="@NewStockType.Name" MaxLength="StockTypeConsts.NameMaxLength">
                                <Feedback>
                                ----ADD IT HERE---
                                    <ValidationError>@L[MyProjectErrorCodes.RequiredField, L["Label:Name"]]</ValidationError>
                                </Feedback>
                            </TextEdit>
                        </Field>
                    </Validation>

Here is the scenario:

I am developing separate parts of an application each with its own module solution that has everything including the UI.

but I ran into an issue, how do I create a Global Search UI in a demo solution that uses these modules?

Example:

  • I have 3 custom module solutions (Products, Stocks, Cars)
  • I have 1 Demo Application solution that adds these a Nuget Packages and I can see them in the Menu of the demo solution.

I need to have a search box with a drop-down list (Products, Stocks, Cars) that does search and return results on the demo solution.

how do I architect the projects to accomplish this scenario?

  • ABP Framework version: v4.2.2
  • UI type: Angular / Blazor
  • DB provider: EF Core /
  • Tiered (MVC) or Identity Server Separated (Angular): yes

I have found multiple anserts to adding a navigation property to a custom entity howerever there are no straightforward steps.

I have a module solution and I need to add a navigation property to my custom entity to the IdentityUser

please provide steps by step and hopefully add it to the official documentation for v4.2.2

the documentation should have a dedicated page for this subject "Integrating base user Identity with your entities"

Suggested topics in this page

  • 1-Many
  • Many-Many
  • extending IdentityModel
  • showing username in extended custom entity page
  • showing list of linked entities in user details page

thanks

Showing 1 to 8 of 8 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11