Skip to content

Commit

Permalink
Add Supporting SameSite Cookies in Legacy browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock committed Jun 8, 2023
1 parent 741c246 commit f17d99b
Show file tree
Hide file tree
Showing 83 changed files with 75,269 additions and 0 deletions.
3 changes: 3 additions & 0 deletions same-site-cookies/Areas/Identity/Pages/_ViewStart.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@{
Layout = "/Pages/Shared/_Layout.cshtml";
}
12 changes: 12 additions & 0 deletions same-site-cookies/Data/ApplicationDbContext.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;

namespace cross_origin_aspnetcore_identity.Data;

public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f17d99b

Please sign in to comment.