Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

wangkanai/IdentityAdmin

Repository files navigation

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.

About

IdentityServer Administration Management Portal, this include Users, Roles, Clients, Claims, IdentityResources and ApiResources.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published