We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c6164 commit 96a539eCopy full SHA for 96a539e
src/main/java/org/jenkinsci/plugins/GithubSecurityRealm.java
@@ -785,7 +785,9 @@ public boolean equals(Object object){
785
this.getGithubApiUri().equals(obj.getGithubApiUri()) &&
786
this.getClientID().equals(obj.getClientID()) &&
787
this.getClientSecret().equals(obj.getClientSecret()) &&
788
- this.getOauthScopes().equals(obj.getOauthScopes());
+ this.getOauthScopes().equals(obj.getOauthScopes()) &&
789
+ this.getEmailDomains().equals(obj.getEmailDomains()) &&
790
+ this.getForceGithubEmail().equals(obj.getForceGithubEmail());
791
} else {
792
return false;
793
}
0 commit comments