Reformat code

This commit is contained in:
2023-06-01 04:17:16 +02:00
parent 23bfda2d75
commit ef92878cbd
53 changed files with 975 additions and 523 deletions

View File

@@ -15,12 +15,7 @@ public class TestWebAppGlobalConfig : IGlobalConfig
public List<string> AllowedExtensions { get; } = new()
{ ".png", ".jpg", ".jpeg", ".gif", ".ico", ".wav", ".mp3", ".ogg", ".mp4", ".webm", ".webp", ".mkv", ".avi" };
public bool IsUserAuthenticated(IWebContext context)
{
return false;
}
public bool IsUserAuthenticated(IWebContext context) { return false; }
public void UserDeauthenticate(IWebContext context)
{
}
public void UserDeauthenticate(IWebContext context) { }
}