app.get("/jsc/configuration/plugins/authentication/less/oauth.less", lessHandler);
app.get("/jsc/configuration/plugins/authentication/img/twitter.png", new StaticResourceHandler(this.getClass(), "/oauth/img/twitter.png", "image/png"));
app.get("/jsc/configuration/plugins/authentication/img/google.png", new StaticResourceHandler(this.getClass(), "/oauth/img/google.png", "image/png"));
app.get("/oauth/twitter", new Twitter(this.twitterConfig, this.userRepository));
app.get("/oauth/google", new Google(this.googleConfig, this.userRepository));
}