principalement du format de code

This commit is contained in:
Paul Schneider 2020-09-12 01:11:30 +01:00
commit ff1444d664
87 changed files with 510 additions and 550 deletions

View file

@ -32,4 +32,4 @@ namespace Yavsc.AuthorizationHandlers
}
}
}
}
}

View file

@ -8,7 +8,7 @@ namespace Yavsc.AuthorizationHandlers
{
public class SendMessageHandler : AuthorizationHandler<PrivateChatEntryRequirement, string>
{
ApplicationDbContext _dbContext ;
readonly ApplicationDbContext _dbContext ;
public SendMessageHandler(ApplicationDbContext dbContext)
{

View file

@ -5,8 +5,7 @@ using Yavsc.ViewModels.Auth;
namespace Yavsc.AuthorizationHandlers {
public class ViewFileHandler : AuthorizationHandler<ViewRequirement, ViewFileContext> {
IFileSystemAuthManager _authManager;
readonly IFileSystemAuthManager _authManager;
public ViewFileHandler (IFileSystemAuthManager authManager) {
_authManager = authManager;
@ -28,4 +27,4 @@ namespace Yavsc.AuthorizationHandlers {
}
}
}
}
}