changement du template pour inclure l'authentification
All checks were successful
Main Build Process / generate documentation (pull_request) Successful in 14s
Main Build Process / generate documentation (push) Successful in 14s

This commit was merged in pull request #1.
This commit is contained in:
2024-09-04 22:50:00 +02:00
parent b3ac007c82
commit 6eacd4c480
63 changed files with 3959 additions and 89 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace LudikZoneBlazor.Data;
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : IdentityDbContext<ApplicationUser>(options)
{
}