Skip to content
Snippets Groups Projects
Commit 07d55522 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Remove unused config vars from controller

Fixes failing start up because of no longer existent
`security.guest.lecturer.enabled` setting.
parent ff91ac13
1 merge request!24Freetext Checker improvements
Pipeline #2118 passed with stages
......@@ -40,21 +40,6 @@ import javax.servlet.http.HttpServletResponse;
@Controller
@RequestMapping("/user")
public class UserController extends AbstractController {
@Value("${security.guest.enabled}")
private String guestEnabled;
@Value("${security.guest.lecturer.enabled}")
private String guestLecturerEnabled;
@Value("${security.cas.enabled}")
private String casEnabled;
@Value("${security.ldap.enabled}")
private String ldapEnabled;
@Value("${security.facebook.enabled}")
private String facebookEnabled;
@Value("${security.google.enabled}")
private String googleEnabled;
@Value("${security.twitter.enabled}")
private String twitterEnabled;
@Autowired
private DaoAuthenticationProvider daoProvider;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment