diff --git a/.gitignore b/.gitignore index 09aae2a..75a04af 100644 --- a/.gitignore +++ b/.gitignore @@ -90,4 +90,7 @@ wwwroot/ # SQLite Datenbank-Dateien *.db *.db-shm -*.db-wal \ No newline at end of file +*.db-wal + +# AppSettings Development files +appsettings.Development.json \ No newline at end of file diff --git a/API/API.csproj b/API/API.csproj index 3bd4161..76856a4 100644 --- a/API/API.csproj +++ b/API/API.csproj @@ -30,8 +30,4 @@ - - - - diff --git a/API/Services/PlunkEmailSender.cs b/API/Services/PlunkEmailSender.cs new file mode 100644 index 0000000..f0ccd3c --- /dev/null +++ b/API/Services/PlunkEmailSender.cs @@ -0,0 +1,11 @@ +using Microsoft.AspNetCore.Identity.UI.Services; + +namespace API.Services; + +public class PlunkEmailSender : IEmailSender +{ + public Task SendEmailAsync(string email, string subject, string htmlMessage) + { + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/API/app.db b/API/app.db index 6fecaf7..127a610 100644 Binary files a/API/app.db and b/API/app.db differ diff --git a/API/appsettings.Development.json b/API/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/API/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -}