aspnetcore/src/Security/samples/ClaimsTransformation
Christian Wenz 64a0d0396e
Upgrade jQuery in samples to version 3.5.1 (#21577)
Fixes #21572
2020-05-07 14:42:14 -07:00
..
Controllers Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
Models Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
Views Upgrade jQuery in samples to version 3.5.1 (#21577) 2020-05-07 14:42:14 -07:00
wwwroot Upgrade jQuery in samples to version 3.5.1 (#21577) 2020-05-07 14:42:14 -07:00
.bowerrc Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
ClaimsTransformation.csproj [master] Update dependencies from 3 repositories (#12977) 2019-08-28 00:21:22 +00:00
ClaimsTransformer.cs Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
Program.cs Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
README.md Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
Startup.cs Make UseEndpoints a thing (#8765) 2019-03-28 15:41:11 -07:00
appsettings.Development.json Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
appsettings.json Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00
bower.json Upgrade jQuery in samples to version 3.5.1 (#21577) 2020-05-07 14:42:14 -07:00
bundleconfig.json Make Auth Samples Project Ref (#6557) 2019-01-15 13:12:54 -08:00

README.md

AuthSamples.ClaimsTransformation

Sample demonstrating claims transformation:

  1. Run the app and click on the MyClaims tab, this should trigger a redirect to login.
  2. Login with any username and password, the sample just validates that any values are provided.
  3. You should be redirected back to /Home/MyClaims which will show a few user claims including a Transformed time.
  4. Refresh the page and see that the Transformed time updates.

Startup.cs and ClaimsTransformer.cs are the most interesting classes in this sample.