From 85ca5802f35efcd36f4cb5f76924b279cf20701b Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Thu, 2 Mar 2023 18:53:30 +0200 Subject: [PATCH] readme update --- README.md | 9 ++++++++- src/Tuitio.Wrapper/README.md | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7fe9107..7debc19 100644 --- a/README.md +++ b/README.md @@ -57,4 +57,11 @@ Tuitio client react uses [tuitio-client](https://lab.code-rove.com/gitea/bricks/ ### C# -In development \ No newline at end of file +Tuitio can be integrated in any .NET API through the [Netmash.Security.Authentication.Tuitio](https://lab.code-rove.com/gitea/bricks/netmash/src/branch/master/src/security/authentication/Netmash.Security.Authentication.Tuitio) NuGet package. + +**Source code:** https://lab.code-rove.com/gitea/bricks/netmash/src/branch/master/src/security/authentication/Netmash.Security.Authentication.Tuitio +**Registry:** https://lab.code-rove.com/public-nuget-server/packages/netmash.security.authentication.tuitio + +Netmash.Security.Authentication.Tuitio uses internally two packages exposed by Tuitio: +* [Netmash.Security.Authentication.Tuitio](https://lab.code-rove.com/public-nuget-server/packages/tuitio.publishedlanguage) +* [Tuitio.Wrapper](https://lab.code-rove.com/public-nuget-server/packages/tuitio.wrapper) \ No newline at end of file diff --git a/src/Tuitio.Wrapper/README.md b/src/Tuitio.Wrapper/README.md index 1bac02a..e373a2c 100644 --- a/src/Tuitio.Wrapper/README.md +++ b/src/Tuitio.Wrapper/README.md @@ -4,7 +4,7 @@ ***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. -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. +Once the package is installed, all the developer has to do is call the ```UseTuitioServices``` method at application startup. After this step, IIdentityService can be injected into any class in the application. ## Package repository