Skip to content

Commit 77b8ad5

Browse files
authored
Update README file.
1 parent 9d87afe commit 77b8ad5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Dynamic Role-Based Authorization in ASP.NET Core 2.2 and 3.x [![NuGet](hhttps://www.nuget.org/packages/DynamicAuthorization.Mvc.Core)
1+
# Dynamic Role-Based Authorization in ASP.NET Core 2.2 and 3.x [![NuGet](http://img.shields.io/nuget/v/DynamicAuthorization.Mvc.Core.svg?style=flat)](https://www.nuget.org/packages/DynamicAuthorization.Mvc.Core)
22

3-
You already know how role-based authorization wokrs in ASP.NET Core.
3+
You already know how role-based authorization works in ASP.NET Core.
44

55
```c#
66
[Authorize(Roles = "Administrator")]
@@ -9,7 +9,7 @@ public class AdministrationController : Controller
99
}
1010
```
1111

12-
But what if you don't want hardcode roles on on the `Authorize` attribute or create roles later and specify in which controller and action it has access without touching source code?
12+
But what if you don't want hardcode roles on the `Authorize` attribute or create roles later and specify in which controller and action it has access without touching source code?
1313

1414
**DynamicAuthorization** helps you authorize users without hardcoding role(s) on the `Authorize` attribute with minimum effort. Keep in mind that DynamicAuthorization is built at the top of ASP.NET Core Identity and use identity mechanism formanaging roles and authorizing users.
1515

0 commit comments

Comments
 (0)