Wangkanai.IdentityAdmin.Core

Package Description


Keywords
admin, identityadmin, identityserver4
License
Apache-2.0
Install
Install-Package Wangkanai.IdentityAdmin.Core -Version 0.0.0-alpha001

Documentation

IdentityAdmin

(Alpha Development)

IdentityAdmin is a free, open source that provides the necessary administration portal for managing IdentityServer to manage clients and users. IdentityAdmin will allow easier implementation of IdentityServer whom provides no administration tool for managing its configuration.

Please show some me love and click on This help movtivate me to continue on developing the project.

Build status GitHub Open Collective Patreon

NuGet Badge NuGet Badge MyGet Badge

Build history

Overview

Installation of IdentityAdmin

PM> install-package Wangkanai.IdentityAdmin

Implement of the library into your web application is done by configuring the Startup.cs by adding the IdentityAdmin service in the ConfigureServices method.

public void ConfigureServices(IServiceCollection services)
{
    services.AddControllersWithViews();

    services.AddIdentityServer()
        .AddAspNetIdentity<ApplicationUser>();

    services.AddIdentityAdmin<ApplicationUser>();
}

Adding the IdentityAdmin middleware to the pipeline. The IdentityAdmin middleware is enabled in the Configure method of Startup.cs file.

public void Configure(IApplicationBuilder app)
{
    app.UseIdentityServer();

    app.UseIdentityAdmin();

    app.UseEndpoints(endpoints => endpoints.MapDefaultControllerRoute());
}

Directory Structure

  • src - The source code of this project lives here.
  • test - The unit tests code of this project to valid that everything pass specs.
  • sample - The sample code of this project lives here.

Contributing

All contribution are welcome, please contact the author.