From 20d1a98a149f4d7892ec9423d5d95b1ce22963eb Mon Sep 17 00:00:00 2001 From: Judah Himango CW Date: Mon, 4 Mar 2019 17:17:22 -0600 Subject: [PATCH] Fixed link in sample. --- Readme.md | 2 +- Sample/Pages/Index.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index a298fa4..77b39f5 100644 --- a/Readme.md +++ b/Readme.md @@ -46,7 +46,7 @@ public void ConfigureServices(IServiceCollection services) } ``` -4. In your controller actions, [call .SaveChangesAsync() when you're done making changes](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Filters/RavenSaveChangesAsyncFilter.cs). Typically this is done via a RavenController base class for MVC/WebAPI projects or via an action filter. See our sample [RavenSaveChangesAsyncFilter.cs](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Filters/RavenSaveChangesAsyncFilter.cs). +4. In your controller actions, [call .SaveChangesAsync() when you're done making changes](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Filters/RavenSaveChangesAsyncFilter.cs#L35). Typically this is done via a RavenController base class for MVC/WebAPI projects or via an action filter. See our sample [RavenSaveChangesAsyncFilter.cs](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Filters/RavenSaveChangesAsyncFilter.cs). Need help? Checkout the [sample app](https://github.com/JudahGabriel/RavenDB.Identity/tree/master/Sample) to see it all in action. diff --git a/Sample/Pages/Index.cshtml b/Sample/Pages/Index.cshtml index b67a472..891e860 100644 --- a/Sample/Pages/Index.cshtml +++ b/Sample/Pages/Index.cshtml @@ -16,6 +16,6 @@ } else { -

You're not signed in. Click register or login to try out Raven.Identity.

+

You're not signed in. Click register or login to try out Raven.Identity.

}