IdentityUserRoleManagement 1.0.0

dotnet add package IdentityUserRoleManagement --version 1.0.0
NuGet\Install-Package IdentityUserRoleManagement -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IdentityUserRoleManagement" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IdentityUserRoleManagement --version 1.0.0
#r "nuget: IdentityUserRoleManagement, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IdentityUserRoleManagement as a Cake Addin
#addin nuget:?package=IdentityUserRoleManagement&version=1.0.0

// Install IdentityUserRoleManagement as a Cake Tool
#tool nuget:?package=IdentityUserRoleManagement&version=1.0.0

Identity User Role Management

Introduction

Thank you for installing Identity User Role Management. This NuGet package provides UI based User and Role Management for ASP.NET MVC applications using ASP.NET Identity.

Initilization Instructions

1. Install the NuGet package 
2. Configure the DefaultConnection of the web.config file to point to the 
   desired database
3. Run the application and call the InitAdmin controller
   EX: localhost:1234/InitAdmin
4. Enter the desired email and password for the administrator and submit

Warning!!!

It is highly recommended that you delete or lock down the InitAdmin controller and views before deployment due to security issues. The InitAdmin functions can be used to create additional Admin accounts even after initialization.

Usage Instructions

1. To manage users call the UsersAdmin index view (domain.com/UsersAdmin)

2. To manage roles call the RolesAdmin index view (domain.com/RolesAdmin)

3. Add the following code to your main navigation menu to easily provide secured
   access to the UsersAdmin and RolesAdmin

	@if (Request.IsAuthenticated && User.IsInRole("Admin"))
	{
			<a href="@Url.Action("Index","UsersAdmin")">Users Admin</a>
			<a href="@Url.Action("Index","RolesAdmin")">Rules Admin</a>
	}

Happy Coding!

Jason Presley http://www.jasonpresley.me

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 3,416 2/19/2018