This commit is contained in:
Anthony Stirling
2024-12-24 09:43:45 +00:00
parent bf9a00868d
commit 6119181276
5 changed files with 13 additions and 7 deletions

View File

@@ -37,12 +37,12 @@ public class GeneralWebController {
private static final String SIGNATURE_BASE_PATH = "customFiles/static/signatures/";
private static final String ALL_USERS_FOLDER = "ALL_USERS";
private final SignatureService signatureService;
private final @Autowired(required = false) UserServiceInterface userService;
private final UserServiceInterface userService;
private final ResourceLoader resourceLoader;
public GeneralWebController(
SignatureService signatureService,
UserServiceInterface userService,
@Autowired(required = false) UserServiceInterface userService,
ResourceLoader resourceLoader) {
this.signatureService = signatureService;
this.userService = userService;