parent
d382f47b5e
commit
46378282c7
|
|
@ -107,6 +107,10 @@
|
|||
<groupId>org.eclipse.che.core</groupId>
|
||||
<artifactId>che-core-api-auth-bitbucket</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.che.core</groupId>
|
||||
<artifactId>che-core-api-auth-github</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.che.core</groupId>
|
||||
<artifactId>che-core-api-auth-gitlab</artifactId>
|
||||
|
|
|
|||
|
|
@ -302,8 +302,9 @@ public class WsMasterModule extends AbstractModule {
|
|||
install(new FactoryModuleBuilder().build(PassThroughProxyProvisionerFactory.class));
|
||||
installDefaultSecureServerExposer(infrastructure);
|
||||
install(new org.eclipse.che.security.BitbucketModule());
|
||||
install(new GitLabModule());
|
||||
install(new org.eclipse.che.security.oauth.GitLabModule());
|
||||
install(new org.eclipse.che.security.oauth.AzureDevOpsModule());
|
||||
install(new org.eclipse.che.security.oauth.GithubModule());
|
||||
|
||||
configureMultiUserMode(persistenceProperties, infrastructure);
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ import org.eclipse.che.inject.DynaModule;
|
|||
*
|
||||
* @author Sergii Kabashniuk
|
||||
*/
|
||||
@DynaModule
|
||||
public class GithubModule extends AbstractModule {
|
||||
@Override
|
||||
protected void configure() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue