IdentityAdmin
IdentityAdmin copied to clipboard
IdentityServer Administration Management Portal, this include Users, Roles, Clients, Claims, IdentityResources and ApiResources.
(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 :star: This help movtivate me to continue on developing the project.
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.