Skip to content

Commit 1111656

Browse files
authored
Merge pull request #15684 from rak-phillip/bugfix/15648-gh-app-validation
GitHub App auth provider: Pass validation when configuring users and groups
2 parents 98d2be8 + 88f3867 commit 1111656

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

shell/edit/auth/github.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ export default {
9797
},
9898
9999
validationPassed() {
100+
// Allows for configuring authorized users and groups
101+
if ( this.model.enabled && !this.editConfig ) {
102+
return true;
103+
}
104+
100105
if (!this.model.clientId || !this.model.clientSecret) {
101106
return false;
102107
}

0 commit comments

Comments
 (0)