-
Notifications
You must be signed in to change notification settings - Fork 139
feat: support direct querying of AD group membership via LDAP #972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
JamieSlome
merged 26 commits into
finos:main
from
kriswest:909-ldap-user-group-confirmation
Jun 16, 2025
Merged
Changes from 10 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
1400d9b
feat: support direct querying of AD group membership via LDAP
kriswest f552624
test: don't clean-up test-repo as cypress tests rely on it
kriswest 189ec0c
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest 04e9292
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest f7e6d75
docs: regenerate reference doc
kriswest 5c048f4
Merge remote-tracking branch 'upstream/909-ldap-user-group-confirmati…
kriswest 3f18c26
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest 043c259
chore: remove change to checkCommitMessages
kriswest 86e74ec
Update src/proxy/processors/push-action/checkCommitMessages.ts
kriswest 84b4534
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest e815bfc
Update src/service/passport/ldaphelper.js
kriswest b7b965d
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest 5114e99
chore: regenerate config ref doc from schema
kriswest 36f9ee6
Merge remote-tracking branch 'upstream/909-ldap-user-group-confirmati…
kriswest 1703530
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest 65c508d
fix: resolve conflict with 'enable-multiple-auth-methods'
kriswest 6231db0
chore: regenerate schema doc
kriswest 04ab644
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest e5fe90d
fix: adjust config schema to account for changes to auth config
kriswest 70af4ee
fix: adjust config schema for changes to auth config from main
kriswest ec0acbd
Merge branch '909-ldap-user-group-confirmation' of https://natwest.gi…
kriswest 95363db
fix: lowercase openidconnect in config schema to match code
kriswest ed6a4ff
docs: add auth config descriptions to config schema and regenerate re…
kriswest adfdb96
Merge branch 'main' into 909-ldap-user-group-confirmation
JamieSlome 709441d
Merge branch 'main' into 909-ldap-user-group-confirmation
kriswest 6a3146d
Merge branch 'main' into 909-ldap-user-group-confirmation
JamieSlome File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no -- commitlint --edit ${1} && npm run lint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ describe('add new repo', async () => { | |
await db.deleteUser('u1'); | ||
await db.deleteUser('u2'); | ||
await db.createUser('u1', 'abc', '[email protected]', 'test', true); | ||
await db.createUser('u2', 'abc', 'test@test.com', 'test', true); | ||
await db.createUser('u2', 'abc', 'test2@test.com', 'test', true); | ||
}); | ||
|
||
it('login', async function () { | ||
|
@@ -187,5 +187,10 @@ describe('add new repo', async () => { | |
|
||
after(async function () { | ||
await service.httpServer.close(); | ||
|
||
// don't clean up data as cypress tests rely on it being present | ||
// await db.deleteRepo('test-repo'); | ||
// await db.deleteUser('u1'); | ||
// await db.deleteUser('u2'); | ||
JamieSlome marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.