From 4082531c3be5fa7ccd2d97510f0ee634f2bfd34c Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Tue, 28 Feb 2023 18:48:34 +0200 Subject: [PATCH] . --- src/Tuitio.Wrapper/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tuitio.Wrapper/README.md b/src/Tuitio.Wrapper/README.md index e18cc58..1bac02a 100644 --- a/src/Tuitio.Wrapper/README.md +++ b/src/Tuitio.Wrapper/README.md @@ -3,7 +3,7 @@ [Tuitio](https://lab.code-rove.com/gitea/tudor.stanciu/tuitio) is a simple identity server implementation focused strictly on the needs of my home lab. ***Tuitio.Wrapper*** is a NuGet package that facilitates integration with a Tuitio instance in a .NET environment by registering a service called IIdentityService in the application's service collection. -It contains two methods, "Authenticate" and "Authorize", which are responsible for calling the appropriate methods from the API controller, ```/identity/authenticate``` or ```/identity/authorize```. These methods provide a simple and convenient way for developers to handle authentication and authorization when communicating with Tuitio's' API. +It contains two methods, "Authenticate" and "Authorize", which are responsible for calling the appropriate methods from the API controller, ```/identity/authenticate``` or ```/identity/authorize```. These methods provide a simple and convenient way for developers to handle authentication and authorization when communicating with Tuitio's API. Once the package is installed, all the developer has to do is call the ```UseTuitioServices``` method the application startup. After this step, IIdentityService can be injected into any class in the application.